diff options
author | John Wiegley <johnw@newartisans.com> | 2004-08-21 05:45:33 -0400 |
---|---|---|
committer | John Wiegley <johnw@newartisans.com> | 2004-08-21 05:45:33 -0400 |
commit | 47cb7891c8012af2e6c03619f6b5ecaa32794126 (patch) | |
tree | ac8b1d4cd06d29af291ce3337c3f01401829af50 /Makefile | |
parent | 86ac953379adc270ff1c9f5bc45256d29f0c41cd (diff) | |
download | fork-ledger-47cb7891c8012af2e6c03619f6b5ecaa32794126.tar.gz fork-ledger-47cb7891c8012af2e6c03619f6b5ecaa32794126.tar.bz2 fork-ledger-47cb7891c8012af2e6c03619f6b5ecaa32794126.zip |
changed RELEASE_LEVEL to DEBUG_LEVEL
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 8 |
1 files changed, 4 insertions, 4 deletions
@@ -22,9 +22,9 @@ OBJS = $(patsubst %.cc,%.o,$(CODE)) CXX = g++ CFLAGS = -Wall -ansi -pedantic -#DFLAGS = -O3 -fomit-frame-pointer -DRELEASE_LEVEL=0 -DFLAGS = -g -DRELEASE_LEVEL=4 -#DFLAGS = -g -DRELEASE_LEVEL=2 -pg +#DFLAGS = -O3 -fomit-frame-pointer -DDEBUG_LEVEL=0 +DFLAGS = -g -DDEBUG_LEVEL=4 +#DFLAGS = -g -DDEBUG_LEVEL=2 -pg INCS = -I/sw/include \ -I/usr/include/gcc/darwin/3.3/c++ \ @@ -84,7 +84,7 @@ include make.deps install: make clean - make DFLAGS="-O3 -fomit-frame-pointer -DRELEASE_LEVEL=0" + make DFLAGS="-O3 -fomit-frame-pointer -DDEBUG_LEVEL=0" cp ledger $(HOME)/bin strip $(HOME)/bin/ledger |