From 10df862510e610cf735ad181c2dd4cdc235e9102 Mon Sep 17 00:00:00 2001 From: Curtis McEnroe Date: Sat, 25 Aug 2018 01:17:16 -0400 Subject: Explicitly build from .o objects Otherwise BSD make just builds the binaries from the .c files directly, ignoring the .h dependencies. --- Makefile | 8 ++++++++ 1 file changed, 8 insertions(+) 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 -- cgit 1.4.1