diff options
author | Tomas Krizek <tomas.krizek@nic.cz> | 2019-03-01 13:46:26 +0100 |
---|---|---|
committer | Tomas Krizek <tomas.krizek@nic.cz> | 2019-03-12 10:44:47 +0100 |
commit | d56166014a2a7031185b774738ea33e0e67a5a8c (patch) | |
tree | f9a5c7f1ffbdaa22d4aa533fddc9699bdd982d36 /tests/pytests | |
parent | meson: split postinstall_tests into extra_tests and config_tests (diff) | |
download | knot-resolver-d56166014a2a7031185b774738ea33e0e67a5a8c.tar.xz knot-resolver-d56166014a2a7031185b774738ea33e0e67a5a8c.zip |
meson: tests/pytests/proxy - remove obsolete Makefile
Diffstat (limited to 'tests/pytests')
-rw-r--r-- | tests/pytests/proxy/Makefile | 18 |
1 files changed, 0 insertions, 18 deletions
diff --git a/tests/pytests/proxy/Makefile b/tests/pytests/proxy/Makefile deleted file mode 100644 index 4f93c705..00000000 --- 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 |