Skip to content

Commit

Permalink
build: enable warnings during build
Browse files Browse the repository at this point in the history
Pass compile commands the -Wall parameter.

Signed-off-by: Filipe Brandenburger <[email protected]>
  • Loading branch information
filbranden committed Aug 5, 2014
1 parent fe9d006 commit c3c9d5f
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion Makefile.am
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@

ACLOCAL_AMFLAGS = -I m4

AM_CPPFLAGS = -Wall

bin_PROGRAMS = numactl numastat numademo migratepages migspeed memhog

lib_LTLIBRARIES = libnuma.la
Expand All @@ -20,7 +22,7 @@ numastat_SOURCES = numastat.c
numastat_CFLAGS = -std=gnu99

numademo_SOURCES = numademo.c stream_lib.c stream_lib.h mt.c mt.h clearcache.c clearcache.h
numademo_CPPFLAGS = -DHAVE_STREAM_LIB -DHAVE_MT -DHAVE_CLEAR_CACHE
numademo_CPPFLAGS = $(AM_CPPFLAGS) -DHAVE_STREAM_LIB -DHAVE_MT -DHAVE_CLEAR_CACHE
numademo_LDADD = libnuma.la -lm

migratepages_SOURCES = migratepages.c util.c
Expand Down

0 comments on commit c3c9d5f

Please sign in to comment.