diff options
Diffstat (limited to 'make')
-rw-r--r-- | make/template/main.mk | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/make/template/main.mk b/make/template/main.mk index 17e15f53a..e55e36c0a 100644 --- a/make/template/main.mk +++ b/make/template/main.mk @@ -281,8 +281,8 @@ configureclean: -rm -f org.inspircd.plist distclean: clean configureclean - rm -rf $(BASE) - find src/modules/ -type l | xargs rm -f + -rm -rf $(SOURCEPATH)/run + find $(SOURCEPATH)/src/modules -type l | xargs rm -f help: @echo 'InspIRCd Makefile' @@ -308,8 +308,7 @@ help: @echo ' Multiple targets may be separated by a space' @echo '' @echo ' clean Cleans object files produced by the compile' - @echo ' distclean Cleans all files produced by compile and ./configure' - @echo ' Note: this includes the Makefile' + @echo ' distclean Cleans all generated files (build, configure, run, etc)' @echo ' deinstall Removes the files created by "make install"' @echo |