From 03e4b90ff4258722c9493e1747ef74bf1c8ac861 Mon Sep 17 00:00:00 2001 From: minima Date: Thu, 13 Jan 2005 23:25:09 +0000 Subject: [PATCH] added make clean!!! --- Changes | 1 + src/Makefile | 5 ++++- 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/Changes b/Changes index 9d920552..8904dd80 100644 --- a/Changes +++ b/Changes @@ -2,6 +2,7 @@ 1. Fixed prompting in languages other than English. 2. Fixed language problem with spoof, but that simply hides a whole can of worms that I shall have to address later. +3. Added make clean to src Makefile (!!!) 12Jan05======================================================================= 1. Add $main::bumpexisting variable which allows a new connection for a user call to disconnect an existing connection with the same call. The default for diff --git a/src/Makefile b/src/Makefile index 27947825..7bdc6caf 100644 --- a/src/Makefile +++ b/src/Makefile @@ -8,4 +8,7 @@ CLIENTOBJ = client.o sel.o cmsg.o chain.o debug.o CLIENTBIN = client $(CLIENTBIN) : $(CLIENTOBJ) - $(CC) $(CFLAGS) $(CLIENTOBJ) -o $(CLIENTBIN) \ No newline at end of file + $(CC) $(CFLAGS) $(CLIENTOBJ) -o $(CLIENTBIN) + +clean: + rm -f $(CLIENTOBJ) $(CLIENTBIN) *~ \ No newline at end of file -- 2.34.1