diff options
author | brain <brain@e03df62e-2008-0410-955e-edbf42e46eb7> | 2008-02-10 17:22:36 +0000 |
---|---|---|
committer | brain <brain@e03df62e-2008-0410-955e-edbf42e46eb7> | 2008-02-10 17:22:36 +0000 |
commit | df167bf4ac944ad8c679d2b2751fcf94adc8c714 (patch) | |
tree | d418944782ed2e12a8016275937d48a7233ad7f4 /.Makefile.inc | |
parent | a86b10b8831994a5f3ff970442714ceac7571656 (diff) |
Now very tidy make output, with pretty colours :p
(Unless it errors, then you get the full commandline and error output etc)
git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@8878 e03df62e-2008-0410-955e-edbf42e46eb7
Diffstat (limited to '.Makefile.inc')
-rw-r--r-- | .Makefile.inc | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/.Makefile.inc b/.Makefile.inc index a8c762276..4d8b94855 100644 --- a/.Makefile.inc +++ b/.Makefile.inc @@ -40,11 +40,11 @@ debug: @echo "* experiencing problems. *" @echo "* *" @echo "*************************************" - ${MAKE} -C . 'FLAGS=${DEBUG}' 'NICEFLAGS=${NICEDEBUG}' all + @${MAKE} -C . 'FLAGS=${DEBUG}' 'NICEFLAGS=${NICEDEBUG}' all mods: @echo "Making modules..." - ${MAKE} -C src/modules DIRNAME="src/modules" $(MAKEARGS) + @${MAKE} -C src/modules DIRNAME="src/modules" $(MAKEARGS) # Make this depend on 'ircd' and 'mods', so its always output last even with -j finishmessage: ircd mods @@ -65,7 +65,7 @@ ircd: @echo "* http://www.inspircd.org/wiki *" @echo "* while you wait for make to run? *" @echo "*************************************" - ${MAKE} -C src DIRNAME="src" $(MAKEARGS) + @${MAKE} -C src DIRNAME="src" $(MAKEARGS) install: all@EXTRA_DIR@ @-install -d -m $(INSTMODE) $(BASE) @@ -85,7 +85,7 @@ install: all@EXTRA_DIR@ @echo "*************************************" module: - ${MAKE} -C src/modules DIRNAME="src/modules" $(MAKEARGS) ${name} + @${MAKE} -C src/modules DIRNAME="src/modules" $(MAKEARGS) ${name} clean: @echo Cleaning... |