added make clean!!!
authorminima <minima>
Thu, 13 Jan 2005 23:25:09 +0000 (23:25 +0000)
committerminima <minima>
Thu, 13 Jan 2005 23:25:09 +0000 (23:25 +0000)
Changes
src/Makefile

diff --git a/Changes b/Changes
index 9d920552a6bbb4c4e015587b090f6d47f7c3f95c..8904dd808c29b3773d64de9db7f6a1f3a34864f5 100644 (file)
--- 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
index 2794782599cd25b99f297f687acd88fef6217108..7bdc6caf0be6502209c77f282685fa60e69cd96d 100644 (file)
@@ -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