Browse Source

Makefiles stuff...

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

6
Makefile

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

4
Makefile.conf

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

Loading…
Cancel
Save