summaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorJohn Wiegley <johnw@newartisans.com>2009-11-14 16:19:00 -0500
committerJohn Wiegley <johnw@newartisans.com>2009-11-14 16:19:00 -0500
commitca43dcbd1fdf59c8019932288149b3aa751c0fdc (patch)
tree7c0d73903f8823f900fd42a5f42e9b975dcf578c /lib
parent9b614cdd0d49ceec4c932a51877b896ba78adae3 (diff)
downloadfork-ledger-ca43dcbd1fdf59c8019932288149b3aa751c0fdc.tar.gz
fork-ledger-ca43dcbd1fdf59c8019932288149b3aa751c0fdc.tar.bz2
fork-ledger-ca43dcbd1fdf59c8019932288149b3aa751c0fdc.zip
Don't configure doxygen or dot when building CppUnit
Diffstat (limited to 'lib')
-rw-r--r--lib/Makefile6
1 files changed, 4 insertions, 2 deletions
diff --git a/lib/Makefile b/lib/Makefile
index dee9afda..608be7d5 100644
--- a/lib/Makefile
+++ b/lib/Makefile
@@ -77,7 +77,8 @@ cppunit-release:
CFLAGS="$(EXTRA_DEFINES) $(ARCH_CFLAGS)" \
LDFLAGS="$(ARCH_LDFLAGS)" \
CC="$(CC)" CXX="$(CXX)" LD="$(LD)" \
- --prefix=$(STOW_ROOT)/cppunit && \
+ --prefix=$(STOW_ROOT)/cppunit \
+ --disable-doxygen --disable-dot && \
make install)
cppunit-debug:
@@ -87,7 +88,8 @@ cppunit-debug:
CFLAGS="-g $(EXTRA_DEFINES) $(ARCH_CFLAGS)" \
LDFLAGS="-g $(ARCH_LDFLAGS)" \
CC="$(CC)" CXX="$(CXX)" LD="$(LD)" \
- --prefix=$(STOW_ROOT)/cppunit-debug && \
+ --prefix=$(STOW_ROOT)/cppunit-debug \
+ --disable-doxygen --disable-dot && \
make install)
cppunit-build: cppunit-release cppunit-debug