From a73ab192ea6c00e935044256f994d903f7666af2 Mon Sep 17 00:00:00 2001 From: lapupe Date: Fri, 16 Sep 2016 21:37:59 +0200 Subject: [PATCH] add cleantmp to remote makefile --- remote/Makefile | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/remote/Makefile b/remote/Makefile index a873a06..f618c17 100644 --- a/remote/Makefile +++ b/remote/Makefile @@ -13,10 +13,10 @@ $(EXEC): $(OBJECTS) $(CFILES) $(CC) $(CFLAGS) $(LDFLAGS) $(OBJECTS) $@.c -o $@ tcpdserver: tcpdserver.c tcpdserver.h - $(CC) $(CFLAGS) $@.c -o $@ + $(CC) $(CFLAGS) $(LDFLAGS) $@.c -o $@ tcpdclient: tcpdclient.c tcpdserver.h - $(CC) $(CFLAGS) $@.c -o $@ + $(CC) $(CFLAGS) $(LDFLAGS) $@.c -o $@ .c.o: $(CC) -c $(CFLAGS) $< -o $@ @@ -26,3 +26,6 @@ clean: mrproper: clean rm $(EXEC) + +cleantmp: + rm /tmp/ipc/*