diff options
author | brain <brain@e03df62e-2008-0410-955e-edbf42e46eb7> | 2007-01-28 18:28:37 +0000 |
---|---|---|
committer | brain <brain@e03df62e-2008-0410-955e-edbf42e46eb7> | 2007-01-28 18:28:37 +0000 |
commit | 8d9bbe7ca89b6a5704dcd8ae09c47c6137a079a1 (patch) | |
tree | 96b34a83f0ec3f39553b781be7ca86d651b61711 /.Makefile.inc | |
parent | 74d098bfb128c68a61af427f70a45358944094c4 (diff) |
Whoops, switch around order of makefile rules so its not always assumed to be 'make debug'
git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@6454 e03df62e-2008-0410-955e-edbf42e46eb7
Diffstat (limited to '.Makefile.inc')
-rw-r--r-- | .Makefile.inc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/.Makefile.inc b/.Makefile.inc index ebaebad20..6cde00796 100644 --- a/.Makefile.inc +++ b/.Makefile.inc @@ -23,6 +23,8 @@ STATICLIBS = @STATICLIBS@ INSTMODE = 0700 MAKEARGS = 'PROGS=${PROGS}' 'FLAGS=${FLAGS}' 'CC=${CC}' 'LDLIBS=${LDLIBS}' 'MODULES=${MODULES}' 'MODPATH=${MODPATH}' 'LIBPATH=${LIBPATH}' 'STATICLIBS=${STATICLIBS}' 'INSTMODE=${INSTMODE}' +all: @MAKEORDER@ finishmessage + debug: @echo "" @echo "*************************************" @@ -39,8 +41,6 @@ debug: @echo "*************************************" ${MAKE} -C . 'FLAGS=${DEBUG}' all -all : @MAKEORDER@ finishmessage - mods: @echo "Making modules..." ${MAKE} -C src/modules DIRNAME="src/modules" $(MAKEARGS) |