diff options
author | Brian Paul <[email protected]> | 2003-10-03 14:03:14 +0000 |
---|---|---|
committer | Brian Paul <[email protected]> | 2003-10-03 14:03:14 +0000 |
commit | 5fd77da4f691ee7ace6dfa9d2ff49535899f895d (patch) | |
tree | c52e3f60e727159b9c70cca887f5b9b181e8327d /progs/xdemos | |
parent | 7d8eb0604ab8b59bea5977741729e719f7327363 (diff) |
improved 'clean' targets (Otto Solares)
Diffstat (limited to 'progs/xdemos')
-rw-r--r-- | progs/xdemos/Makefile.X11 | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/progs/xdemos/Makefile.X11 b/progs/xdemos/Makefile.X11 index 264fc2491c5..de2273c5e4a 100644 --- a/progs/xdemos/Makefile.X11 +++ b/progs/xdemos/Makefile.X11 @@ -61,11 +61,11 @@ default: @echo "Specify a target configuration (i.e. make -f Makefile.X11 linux)" clean: - -rm *.o *~ + -rm -f *.o *~ realclean: - -rm $(PROGS) - -rm *.o *~ + -rm -f $(PROGS) + -rm -f *.o *~ targets: $(PROGS) |