mirror of
https://git.code.sf.net/p/quake/quakeforge-old
synced 2024-11-10 06:31:56 +00:00
make distclean now does a better clean
This commit is contained in:
parent
77ef82b00a
commit
4ce6fd0de1
1 changed files with 4 additions and 0 deletions
|
@ -22,6 +22,10 @@ distclean:
|
|||
rm -f build_rpm quakeforge-*.tar.gz quakeforge.spec
|
||||
find . -name \*~ | xargs rm -f
|
||||
find . -name \*.bak | xargs rm -f
|
||||
find . -name '.#*' | xargs rm -f
|
||||
find . -name '#*#' | xargs rm -f
|
||||
find . -name core -type f | xargs rm -f
|
||||
rm -rf targets
|
||||
for dir in $(SUBDIRS); do \
|
||||
$(MAKE) -C $$dir $@ || exit; \
|
||||
done
|
||||
|
|
Loading…
Reference in a new issue