summaryrefslogtreecommitdiff
path: root/.Makefile.inc
diff options
context:
space:
mode:
authordanieldg <danieldg@e03df62e-2008-0410-955e-edbf42e46eb7>2009-09-17 14:13:17 +0000
committerdanieldg <danieldg@e03df62e-2008-0410-955e-edbf42e46eb7>2009-09-17 14:13:17 +0000
commit05b111d6a245725c81a314794fb95e8375fb6720 (patch)
tree54553740e0b831fa65926aa9aef093e7bc490733 /.Makefile.inc
parent3a186342c975a8bbd3f588d180a55e381b31883c (diff)
Update make help, configure, and fix build of empty m_* directories
git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@11739 e03df62e-2008-0410-955e-edbf42e46eb7
Diffstat (limited to '.Makefile.inc')
-rw-r--r--.Makefile.inc9
1 files changed, 4 insertions, 5 deletions
diff --git a/.Makefile.inc b/.Makefile.inc
index 4f619feac..1eda95f80 100644
--- a/.Makefile.inc
+++ b/.Makefile.inc
@@ -186,6 +186,7 @@ configureclean:
rm -f BSDmakefile
rm -f GNUmakefile
rm -f include/inspircd_config.h
+ rm -f include/inspircd_version.h
rm -f include/inspircd_se_config.h
distclean: clean configureclean
@@ -198,7 +199,6 @@ help:
@echo 'Flags:'
@echo ' V=1 Show the full command being executed instead of "BUILD: dns.cpp"'
@echo ' D=1 Enable debug build, for module development or crash tracing'
- @echo ' O=objdir Use an alternate location for storing object files'
@echo ' -j <N> Run a parallel build using N jobs'
@echo ''
@echo 'User targets:'
@@ -207,10 +207,9 @@ help:
@echo ' Currently installs to ${BASE}'
@echo ' debug Compile a debug build. Equivalent to "make D=1 all"'
@echo ''
- @echo ' M=m_foo Builds a single module'
- @echo ' T=target Builds a user-specified target'
- @echo ' Target can be a file path relative to src/, or one of:'
- @echo ' inspircd commands modules'
+ @echo ' M=m_foo Builds a single module (cmd_foo also works here)'
+ @echo ' T=target Builds a user-specified target, such as "inspircd" or "modules"'
+ @echo ' Other targets are specified by their path in the build directory'
@echo ' Multiple targets may be separated by a space'
@echo ''
@echo ' clean Cleans object files produced by the compile'