summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMatt Turner <mattst88@gmail.com>2008-11-18 02:08:46 +0000
committerMatt Turner <mattst88@gmail.com>2008-11-18 02:08:46 +0000
commit06d8002d0dc08bcb44858a087d2b30a4b6793dde (patch)
tree993c1b9a29a82f437d66c06dc429963151edca6e
parent17d8cb5d084dc7cfd35e53be8f223c1cac44a6ad (diff)
Remove only the objects, not *.o
git-svn-id: svn://mattst88.com/svn/cleanbench/trunk@87 0d43b9a7-5ab2-4d7b-af9d-f64450cef757
-rw-r--r--Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index 44e636b..951630f 100644
--- a/Makefile
+++ b/Makefile
@@ -10,7 +10,7 @@ all: $(OBJS)
$(CC) $(OBJS) -o cleanbench $(LIBS)
clean:
- /bin/rm -f *.o cleanbench sysinfo.c
+ /bin/rm -f cleanbench sysinfo.c $(OBJS)
remake: clean all