about summary refs log tree commit diff homepage
diff options
context:
space:
mode:
authorJune McEnroe <june@causal.agency>2018-08-25 01:17:16 -0400
committerJune McEnroe <june@causal.agency>2018-08-25 01:17:16 -0400
commit10df862510e610cf735ad181c2dd4cdc235e9102 (patch)
treef4db1a7cfbe3c9d25f487451d4572fab89c41b32
parentImplement map rendering (diff)
downloadtorus-10df862510e610cf735ad181c2dd4cdc235e9102.tar.gz
torus-10df862510e610cf735ad181c2dd4cdc235e9102.zip
Explicitly build from .o objects
Otherwise BSD make just builds the binaries from the .c files directly,
ignoring the .h dependencies.
-rw-r--r--Makefile8
1 files changed, 8 insertions, 0 deletions
diff --git a/Makefile b/Makefile
index 9d00e9e..50535fb 100644
--- a/Makefile
+++ b/Makefile
@@ -8,6 +8,14 @@ OBJS = $(BINS:%=%.o)
 
 all: tags $(BINS)
 
+server: server.o
+
+client: client.o
+
+meta: meta.o
+
+merge: merge.o
+
 $(OBJS): torus.h
 
 client.o: help.h