X-Git-Url: http://git.mutantstargoat.com/user/nuclear/?a=blobdiff_plain;f=libs%2Ftreestor%2FGNUmakefile;fp=libs%2Ftreestor%2FGNUmakefile;h=6c2ea752b4011ea31b3dbc5444f583f43a4a3ca9;hb=8e0d640fcb4dfee7cea3d1f79f7854f5e75cf4c0;hp=0000000000000000000000000000000000000000;hpb=070c37ff23e40cc9ca992f25af41e4cbdcb28add;p=retroray diff --git a/libs/treestor/GNUmakefile b/libs/treestor/GNUmakefile new file mode 100644 index 0000000..6c2ea75 --- /dev/null +++ b/libs/treestor/GNUmakefile @@ -0,0 +1,14 @@ +obj = src/treestor.o src/text.o src/dynarr.o +alib = ../unix/treestor.a + +CFLAGS = -O3 -Iinclude + +$(alib): $(obj) + $(AR) rcs $@ $(obj) + +.c.o: + $(CC) $(CFLAGS) -c $< -o $@ + +.PHONY: clean +clean: + rm -f $(obj) $(alib)