X-Git-Url: http://git.madism.org/?a=blobdiff_plain;f=test%2FMakefile;fp=test%2FMakefile;h=b0089344710b0c933e332e05d86a87bbc79cee1a;hb=98c615b91f0da85c9bd00bbff7a8fd1258400ab9;hp=0000000000000000000000000000000000000000;hpb=a5f7e5aaf5bb2168aca37066eb6b49d126689aa6;p=~madcoder%2Fpwqr.git diff --git a/test/Makefile b/test/Makefile new file mode 100644 index 0000000..b008934 --- /dev/null +++ b/test/Makefile @@ -0,0 +1,9 @@ +all: test + +test: test.c + $(CC) -Wall -Werror -Wextra -Wno-unused-parameter -std=gnu99 $(CFLAGS) -O2 -g -lpthread -o $@ $< + +clean: + $(RM) test + +.PHONY: all clean