]> git.ipfire.org Git - thirdparty/knot-resolver.git/commitdiff
meson: tests/pytests/proxy - remove obsolete Makefile
authorTomas Krizek <tomas.krizek@nic.cz>
Fri, 1 Mar 2019 12:46:26 +0000 (13:46 +0100)
committerTomas Krizek <tomas.krizek@nic.cz>
Tue, 12 Mar 2019 09:44:47 +0000 (10:44 +0100)
tests/pytests/proxy/Makefile [deleted file]

diff --git a/tests/pytests/proxy/Makefile b/tests/pytests/proxy/Makefile
deleted file mode 100644 (file)
index 4f93c70..0000000
+++ /dev/null
@@ -1,18 +0,0 @@
-CC=gcc
-CFLAGS_TLS=-DDEBUG -ggdb3 -O0 -lgnutls -luv -lasan -fsanitize=address -fno-omit-frame-pointer
-
-all: tlsproxy
-
-tlsproxy: tls-proxy.o tlsproxy.o
-       $(CC) tls-proxy.o tlsproxy.o -o tlsproxy $(CFLAGS_TLS)
-
-tls-proxy.o: tls-proxy.c tls-proxy.h array.h
-       $(CC) -c -o $@ $< $(CFLAGS_TLS)
-
-tlsproxy.o: tlsproxy.c tls-proxy.h
-       $(CC) -c -o $@ $< $(CFLAGS_TLS)
-
-clean:
-       rm -f tls-proxy.o tlsproxy.o tlsproxy
-
-.PHONY: all clean