Archived
3
0

add cleantmp to remote makefile

This commit is contained in:
lapupe 2016-09-16 21:37:59 +02:00
parent 66fe69e711
commit a73ab192ea

View File

@ -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/*