aboutsummaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile6
1 files changed, 3 insertions, 3 deletions
diff --git a/Makefile b/Makefile
index 7601317..cfe224c 100644
--- a/Makefile
+++ b/Makefile
@@ -7,16 +7,16 @@ CFLAGS = -std=c99 -Wall -Werror
build/0tDNS.o : src/0tDNS.c | build
gcc $(CFLAGS) $^ -c -o $@
-receive : build/receive.o
+receive_respond : build/receive_respond.o
$(CC) $^ -lldns -o $@
-build/receive.o : src/receive.c | build
+build/receive_respond.o : src/receive_respond.c | build
gcc $(CFLAGS) $^ -c -o $@
build :
mkdir build
clean :
- -rm -r build 0tDNS receive
+ -rm -r build 0tDNS receive_respond
.PHONY : clean