From 34a0a81ed23d9bccf9efbe92c58c85426bf41dc8 Mon Sep 17 00:00:00 2001 From: Evgeny Zinoviev Date: Tue, 8 Dec 2020 00:20:42 +0300 Subject: move test utilities to a separate directory --- Makefile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'Makefile') diff --git a/Makefile b/Makefile index 54945cb..479dbe7 100644 --- a/Makefile +++ b/Makefile @@ -16,10 +16,10 @@ voidnsrun: voidnsrun.o utils.o voidnsundo: voidnsundo.o utils.o $(CC) $(CFLAGS) -o $@ $^ $(LDFLAGS) -testserver: testserver.o utils.o +testserver: test/testserver.o utils.o $(CC) $(CFLAGS) -o $@ $^ $(LDFLAGS) -testclient: testclient.o utils.o +testclient: test/testclient.o utils.o $(CC) $(CFLAGS) -o $@ $^ $(LDFLAGS) install: voidnsrun voidnsundo @@ -27,7 +27,7 @@ install: voidnsrun voidnsundo chmod u+s $(PREFIX)/bin/voidnsrun $(PREFIX)/bin/voidnsundo clean: - rm -f *.o voidnsrun voidnsundo testserver testclient + rm -f *.o test/*.o voidnsrun voidnsundo testserver testclient %.o: %.c $(CC) $(CFLAGS) -c $^ -I. -o $@ -- cgit v1.2.3