From: Tomas Krizek Date: Fri, 1 Mar 2019 12:46:26 +0000 (+0100) Subject: meson: tests/pytests/proxy - remove obsolete Makefile X-Git-Tag: v4.0.0~24^2~40 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=d56166014a2a7031185b774738ea33e0e67a5a8c;p=thirdparty%2Fknot-resolver.git meson: tests/pytests/proxy - remove obsolete Makefile --- diff --git a/tests/pytests/proxy/Makefile b/tests/pytests/proxy/Makefile deleted file mode 100644 index 4f93c7053..000000000 --- a/tests/pytests/proxy/Makefile +++ /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