Skip to content

Commit

Permalink
Add message about how building with debug makes huuuuuuuuuuuuuuge slo…
Browse files Browse the repository at this point in the history
…wer executables :p

git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@6453 e03df62e-2008-0410-955e-edbf42e46eb7
  • Loading branch information
braindigitalis committed Jan 28, 2007
1 parent 5b657c3 commit 74d098b
Showing 1 changed file with 13 additions and 0 deletions.
13 changes: 13 additions & 0 deletions .Makefile.inc
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,19 @@ INSTMODE = 0700
MAKEARGS = 'PROGS=${PROGS}' 'FLAGS=${FLAGS}' 'CC=${CC}' 'LDLIBS=${LDLIBS}' 'MODULES=${MODULES}' 'MODPATH=${MODPATH}' 'LIBPATH=${LIBPATH}' 'STATICLIBS=${STATICLIBS}' 'INSTMODE=${INSTMODE}'

debug:
@echo ""
@echo "*************************************"
@echo "* BUILDING WITH DEBUG SYMBOLS *"
@echo "* *"
@echo "* Please be aware that this build *"
@echo "* will consume a very large amount *"
@echo "* of disk space (350mb+) and may *"
@echo "* run noticably slower. Only build *"
@echo "* InspIRCd with debug symbols if *"
@echo "* you are developing modules or are *"
@echo "* experiencing problems. *"
@echo "* *"
@echo "*************************************"
${MAKE} -C . 'FLAGS=${DEBUG}' all

all : @MAKEORDER@ finishmessage
Expand Down

0 comments on commit 74d098b

Please sign in to comment.