summaryrefslogtreecommitdiff
path: root/progs/samples
diff options
context:
space:
mode:
authorBrian Paul <brian.paul@tungstengraphics.com>2003-10-03 14:03:14 +0000
committerBrian Paul <brian.paul@tungstengraphics.com>2003-10-03 14:03:14 +0000
commit5fd77da4f691ee7ace6dfa9d2ff49535899f895d (patch)
treec52e3f60e727159b9c70cca887f5b9b181e8327d /progs/samples
parent7d8eb0604ab8b59bea5977741729e719f7327363 (diff)
improved 'clean' targets (Otto Solares)
Diffstat (limited to 'progs/samples')
-rw-r--r--progs/samples/Makefile.X116
1 files changed, 3 insertions, 3 deletions
diff --git a/progs/samples/Makefile.X11 b/progs/samples/Makefile.X11
index 8a63517951..d7efd25cd5 100644
--- a/progs/samples/Makefile.X11
+++ b/progs/samples/Makefile.X11
@@ -32,11 +32,11 @@ default:
@echo "Specify a target configuration"
clean:
- -rm *.o *~
+ -rm -f *.o *~
realclean:
- -rm $(PROGS)
- -rm *.o *~
+ -rm -f $(PROGS)
+ -rm -f *.o *~
targets: $(PROGS)