aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/Makefile b/Makefile
index 1378ade..7601317 100644
--- a/Makefile
+++ b/Makefile
@@ -4,13 +4,13 @@ CFLAGS = -std=c99 -Wall -Werror
0tDNS : build/0tDNS.o
$(CC) $^ -lunbound -o $@
-build/0tDNS.o : src/0tDNS.c build
+build/0tDNS.o : src/0tDNS.c | build
gcc $(CFLAGS) $^ -c -o $@
receive : build/receive.o
$(CC) $^ -lldns -o $@
-build/receive.o : src/receive.c build
+build/receive.o : src/receive.c | build
gcc $(CFLAGS) $^ -c -o $@
build :