aboutsummaryrefslogtreecommitdiffstats
path: root/Makefile
diff options
context:
space:
mode:
authorMattias Andrée <maandree@kth.se>2021-09-16 16:17:46 +0200
committerMattias Andrée <maandree@kth.se>2021-09-16 16:17:46 +0200
commit685183aec181d29f3035cdd19ab1d826e2edb5f9 (patch)
treea7816c4b6fcc81fa0ed914c7a51de04c35d2fdbf /Makefile
parentm readme (diff)
downloadbinary-multisearch.h-685183aec181d29f3035cdd19ab1d826e2edb5f9.tar.gz
binary-multisearch.h-685183aec181d29f3035cdd19ab1d826e2edb5f9.tar.bz2
binary-multisearch.h-685183aec181d29f3035cdd19ab1d826e2edb5f9.tar.xz
Improve makefile1.0.1
Signed-off-by: Mattias Andrée <maandree@kth.se>
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile14
1 files changed, 11 insertions, 3 deletions
diff --git a/Makefile b/Makefile
index df46d2b..515e737 100644
--- a/Makefile
+++ b/Makefile
@@ -3,10 +3,15 @@
CONFIGFILE = config.mk
include $(CONFIGFILE)
+
all: test
+test.o: binary-multisearch.h
+
+.c.o:
+ $(CC) -c -o $@ $< $(CFLAGS) $(CPPFLAGS)
-test: test.c binary-multisearch.h
- $(CC) -o $@ test.c $(CPPFLAGS) $(CFLAGS) $(LDFLAGS)
+.o:
+ $(CC) -o $@ $< $(LDFLAGS)
check: test
./test
@@ -19,6 +24,9 @@ uninstall:
-rm -f -- "$(DESTDIR)$(PREFIX)/include/binary-multisearch.h"
clean:
- -rm -f -- *.o test
+ -rm -f -- *.o *.su test
+
+.SUFFIXES:
+.SUFFIXES: .o .c
.PHONY: all check install uninstall clean