Browse Source

Makefiles stuff...

master
heck 2 years ago
parent
commit
e3e51f0904
  1. 8
      Makefile
  2. 4
      Makefile.conf

8
Makefile

@ -1,9 +1,13 @@
.PHONY: all src clean
all: src
all: test src
src:
$(MAKE) -C src
test:
$(MAKE) -C test
clean:
$(MAKE) -C src clean
$(MAKE) -C src clean
$(MAKE) -C test clean

4
Makefile.conf

@ -21,8 +21,8 @@ CFLAGS+=\
-Wwrite-strings \
-Wconversion \
-Wshadow \
-Wstrict-prototypes \
-Werror=implicit-function-declaration \
# -Wstrict-prototypes \
# -Werror=implicit-function-declaration \
-Werror=implicit-int \
-Werror=incompatible-pointer-types \
-Werror=int-conversion \

Loading…
Cancel
Save