aboutsummaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorWojciech Kosior <kwojtus@protonmail.com>2020-05-29 12:53:42 +0200
committerWojciech Kosior <kwojtus@protonmail.com>2020-05-29 12:53:42 +0200
commit459fd487fcbdc33fcccddbf4c82eae048275ba51 (patch)
tree9d50221aa5edeae9d4a7af3ffe4f00af7943a152 /Makefile
parent251181f7e5d995e50736d6a86d29c3917e64af08 (diff)
download0tdns-459fd487fcbdc33fcccddbf4c82eae048275ba51.tar.gz
0tdns-459fd487fcbdc33fcccddbf4c82eae048275ba51.zip
drop C codebase
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