X-Git-Url: http://git.mutantstargoat.com/user/nuclear/?p=gph-cmath;a=blobdiff_plain;f=test%2FMakefile;fp=test%2FMakefile;h=c23e3f14a10ffe7e3c8e337a3e935091cdb7136e;hp=0000000000000000000000000000000000000000;hb=dfee2f96f3b783e0f84582f70cfa506114bd26af;hpb=44b2f3ed294a4d5e7662444079814c69b72db17d diff --git a/test/Makefile b/test/Makefile new file mode 100644 index 0000000..c23e3f1 --- /dev/null +++ b/test/Makefile @@ -0,0 +1,12 @@ +obj = test.o +bin = test + +CXXFLAGS = -pedantic -Wall -g -I../src +LDFLAGS = -lgmath -lm + +$(bin): $(obj) + $(CXX) -o $@ $(obj) $(LDFLAGS) + +.PHONY: clean +clean: + rm -f $(obj) $(bin)