From: minima Date: Thu, 13 Jan 2005 23:25:09 +0000 (+0000) Subject: added make clean!!! X-Git-Tag: R_1_52~232 X-Git-Url: http://dxcluster.net/gitweb/gitweb.cgi?p=spider.git;a=commitdiff_plain;h=03e4b90ff4258722c9493e1747ef74bf1c8ac861 added make clean!!! --- 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