aboutsummaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorWojciech Kosior <kwojtus@protonmail.com>2020-05-11 14:43:54 +0200
committerWojciech Kosior <kwojtus@protonmail.com>2020-05-11 14:43:54 +0200
commit83a419bf1559fb4742e3155dab4c1fab3a0dc128 (patch)
tree13f6d03bde0c69223cba931861b84b49df75161f /Makefile
parentf91c8395cec54efb8908e4cc9dd261983cca639b (diff)
download0tdns-83a419bf1559fb4742e3155dab4c1fab3a0dc128.tar.gz
0tdns-83a419bf1559fb4742e3155dab4c1fab3a0dc128.zip
make helper program able to ask DNS at address provided on the command line
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/Makefile b/Makefile
index ccd3186..89c14f8 100644
--- a/Makefile
+++ b/Makefile
@@ -7,7 +7,7 @@ CFLAGS = -std=c99 -Wall -Werror -I include
build/%.o : src/%.c | build
gcc $(CFLAGS) $^ -c -o $@
-ask_localhost : build/ask_localhost.o
+ask_resolver : build/ask_resolver.o
$(CC) $^ -lunbound -o $@
build :
@@ -16,6 +16,6 @@ build :
all : 0tDNS receive_respond
clean :
- -rm -r build 0tDNS ask_localhost
+ -rm -r build 0tDNS ask_resolver
.PHONY : clean