Added a missing top-level clean to the Makefile, which is mainly
responsible for removing the log files. Otherwise the log files just keep accumulating output forever.
This commit is contained in:
parent
7a0bff846f
commit
6d569ca396
1
Makefile
1
Makefile
|
|
@ -78,6 +78,7 @@ install-tcl-real: install-tcl-dirs
|
||||||
clean:
|
clean:
|
||||||
for dir in ${MODULES} ${PROGRAMS} ${UNUSED_MODULES}; do \
|
for dir in ${MODULES} ${PROGRAMS} ${UNUSED_MODULES}; do \
|
||||||
(cd $$dir && ${MAKE} clean); done
|
(cd $$dir && ${MAKE} clean); done
|
||||||
|
${RM} *.tmp */*.tmp *.sav */*.sav *.log TAGS tags
|
||||||
|
|
||||||
distclean:
|
distclean:
|
||||||
touch defs.mak
|
touch defs.mak
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue