diff options
author | brain <brain@e03df62e-2008-0410-955e-edbf42e46eb7> | 2006-12-17 13:28:50 +0000 |
---|---|---|
committer | brain <brain@e03df62e-2008-0410-955e-edbf42e46eb7> | 2006-12-17 13:28:50 +0000 |
commit | 370b9053eb3160a927ff1439ebbf657c8f65c6d6 (patch) | |
tree | 6c544e563dd9059f16bdbac730709c430f79842e | |
parent | dec9eaa58841dea08455c0e977fd7c059aa13599 (diff) |
Add a message to the makefile, when starting the build: "this will take a long time, why not read our wiki while waiting for make to run"
git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@6033 e03df62e-2008-0410-955e-edbf42e46eb7
-rw-r--r-- | .Makefile.inc | 13 |
1 files changed, 11 insertions, 2 deletions
diff --git a/.Makefile.inc b/.Makefile.inc index 155bc36fb..3215b0d2c 100644 --- a/.Makefile.inc +++ b/.Makefile.inc @@ -33,12 +33,20 @@ finishmessage: ircd mods @echo "" @echo "*************************************" @echo "* BUILD COMPLETE! *" + @echo "* *" @echo "* To install InspIRCd, type: *" @echo "* make install *" @echo "*************************************" ircd: - @echo "Making ircd..." + @echo "*************************************" + @echo "* BUILDING INSPIRCD *" + @echo "* *" + @echo "* This will take a *long* time. *" + @echo "* Why not read our wiki at *" + @echo "* http://www.inspircd.org/wiki *" + @echo "* while you wait for make to run? *" + @echo "*************************************" ${MAKE} -C src DIRNAME="src" $(MAKEARGS) install: all @@ -139,8 +147,9 @@ install: all @echo "" @echo "*************************************" @echo "* INSTALL COMPLETE! *" + @echo "* *" @echo "* It is safe to ignore any messages *" - @echo "* related to copying of files. *" + @echo "* related to copying of conf files. *" @echo "* *" @echo "* REMEMBER TO EDIT YOUR CONFIG FILE *" @echo "*************************************" |