aboutsummaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile21
1 files changed, 0 insertions, 21 deletions
diff --git a/Makefile b/Makefile
deleted file mode 100644
index 89c14f8..0000000
--- a/Makefile
+++ /dev/null
@@ -1,21 +0,0 @@
-CC ?= gcc
-CFLAGS = -std=c99 -Wall -Werror -I include
-
-0tDNS : build/0tDNS.o build/receive_respond.o
- $(CC) $^ -lunbound -lldns -o $@
-
-build/%.o : src/%.c | build
- gcc $(CFLAGS) $^ -c -o $@
-
-ask_resolver : build/ask_resolver.o
- $(CC) $^ -lunbound -o $@
-
-build :
- mkdir build
-
-all : 0tDNS receive_respond
-
-clean :
- -rm -r build 0tDNS ask_resolver
-
-.PHONY : clean