diff options
author | John Wiegley <johnw@newartisans.com> | 2004-04-08 23:14:53 +0000 |
---|---|---|
committer | John Wiegley <johnw@newartisans.com> | 2004-04-08 23:14:53 +0000 |
commit | 83b7a0ea9ca681893544c11160fc85e201da2937 (patch) | |
tree | 7f267f571bf113b07d7e6cd3874082aa11a5b5fd /Makefile | |
parent | 250248fd9e868e2afb7cd2b94506834d5542846b (diff) | |
download | fork-ledger-83b7a0ea9ca681893544c11160fc85e201da2937.tar.gz fork-ledger-83b7a0ea9ca681893544c11160fc85e201da2937.tar.bz2 fork-ledger-83b7a0ea9ca681893544c11160fc85e201da2937.zip |
Several small fixes.
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -3,8 +3,8 @@ OBJS = $(patsubst %.cc,%.o,$(CODE)) CFLAGS = #-Wall -ansi -pedantic DFLAGS = -O3 -fomit-frame-pointer #DFLAGS = -g -DDEBUG=1 -INCS = -I/usr/local/include -LIBS = -L/usr/local/lib -lgmpxx -lgmp -lpcre +INCS = -I/sw/include +LIBS = -L/sw/lib -lgmpxx -lgmp -lpcre ifdef GNUCASH CODE := $(CODE) gnucash.cc @@ -25,7 +25,7 @@ ledger.info: ledger.texi g++ $(CFLAGS) $(INCS) $(DFLAGS) -c -o $@ $< clean: - rm -f ledger ledger.info *.o *~ .\#* + rm -f ledger ledger.info *.o *~ .\#* *.elc rebuild: clean deps all |