diff --git a/Makefile b/Makefile index a8d2ae4..1abd4d3 100644 --- a/Makefile +++ b/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 \ No newline at end of file + $(MAKE) -C src clean + $(MAKE) -C test clean \ No newline at end of file diff --git a/Makefile.conf b/Makefile.conf index b03e43e..2d9b8e5 100644 --- a/Makefile.conf +++ b/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 \