From 459fd487fcbdc33fcccddbf4c82eae048275ba51 Mon Sep 17 00:00:00 2001 From: Wojciech Kosior Date: Fri, 29 May 2020 12:53:42 +0200 Subject: drop C codebase --- Makefile | 21 --------------------- 1 file changed, 21 deletions(-) delete mode 100644 Makefile (limited to 'Makefile') 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 -- cgit v1.2.3