diff options
author | Christian Franke <nobody@nowhere.ws> | 2012-01-03 01:50:41 +0100 |
---|---|---|
committer | Christian Franke <nobody@nowhere.ws> | 2012-01-03 01:50:41 +0100 |
commit | fad43aa28bdf319d346c4d6ca1dd4b6971267eca (patch) | |
tree | b141a346b3b5199ac7928142dd285a1144ee0735 /Makefile | |
parent | ed6be798a8f21bface5174f4fd8d1f5ff12d4a4f (diff) |
Bring some structure to this whole mess
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 4 |
1 files changed, 3 insertions, 1 deletions
@@ -83,7 +83,7 @@ OBJDIR = . # List C source files here. (C dependencies are automatically generated.) -SRC = $(TARGET).c +SRC = $(wildcard *.c) # List C++ source files here. (C dependencies are automatically generated.) @@ -154,6 +154,8 @@ CFLAGS += -fpack-struct CFLAGS += -fshort-enums CFLAGS += -Wall CFLAGS += -Wstrict-prototypes +CFLAGS += -Werror +CFLAGS += -pedantic #CFLAGS += -mshort-calls #CFLAGS += -fno-unit-at-a-time #CFLAGS += -Wundef |