X-Git-Url: https://pd.if.org/git/?p=hexagon;a=blobdiff_plain;f=Makefile;h=0ae921c540ddc748e989189455ec4ea0954ee5d6;hp=1662968c9d485bdbbb4007d220719f6a0d90635c;hb=ce4fd67e5bfd07192ca5cb357798aaa3588512e4;hpb=f4de9d8b5cc2646e133d8c387fa1de5814cfb453 diff --git a/Makefile b/Makefile index 1662968..0ae921c 100644 --- a/Makefile +++ b/Makefile @@ -7,7 +7,7 @@ CFLAGS= -Wall -Wno-parentheses $(ARCH) -I. -I.. OBJS= hexagon.o astar.o SRC=$(OBJS:.o=.c) TESTS= t/cantor.t t/distance.t t/adjacency.t t/range.t t/hexbin.t \ - t/gridsize.t t/center.t t/astar.t t/astarlg.t + t/gridsize.t t/center.t t/astar.t PREFIX=/usr/local all: libhexagon.a docs testfiles @@ -15,13 +15,13 @@ all: libhexagon.a docs testfiles clean: rm -f $(OBJS) libhexagon.a $(TESTS) -t/%.t: t/%.o t/tap.o $(OBJS) +t/%.t: t/%.o t/ctap.o $(OBJS) $(CC) -I.. -I. -o $@ $+ $(LDFLAGS) testfiles: $(TESTS) test: libhexagon.a $(TESTS) - @prove --exec '' 2>/dev/null + @prove --exec $(TESTS) '' 2>/dev/null libhexagon.a: $(OBJS) ar r $@ $+