X-Git-Url: https://git.rrq.au/?a=blobdiff_plain;f=htable%2FMakefile;h=e8bd7e1ac9103c47cca7372299ae1bdcc51f0936;hb=1d530c65782b499bb75afff76f1214edfe30ec21;hp=4d0ed950bd473f117753633c258192205a73978f;hpb=48cdb87442b7b3f1cdde9c1710ed90ec773dce97;p=rrq%2Frrqmisc.git diff --git a/htable/Makefile b/htable/Makefile index 4d0ed95..e8bd7e1 100644 --- a/htable/Makefile +++ b/htable/Makefile @@ -1,18 +1,14 @@ -default: libhtable.a +LIBRARY = librrqhtable.a +LIBOBJS = htable.o -.INTERMEDIATE: htable.o -htable.o: CFLAGS = -Wall -g -htable.o: htable.c +default: $(LIBRARY) example-htable +CLEANRM += $(LIBRARY) -libhtable.a: htable.o - $(AR) r $@ $^ -CLEANRM += libhtable.a +include ../common.mk .INTERMEDIATE: example-htable.o example-htable: CFLAGS = -Wall -g -example-htable: LDLIBS = libhtable.a -example-htable: example-htable.o libhtable.a +example-htable: example-htable.o $(LIBRARY) + CLEANRM += example-htable -clean: - rm -f $(CLEANRM)