diff options
author | John Wiegley <johnw@newartisans.com> | 2008-08-26 00:10:47 -0400 |
---|---|---|
committer | John Wiegley <johnw@newartisans.com> | 2008-08-26 00:10:47 -0400 |
commit | 42c7e6d3f9fd05e91df753112d37652a8d742c66 (patch) | |
tree | 80909ebf8322e3f8219c02d53b9c880eac60006d /lib | |
parent | 3572c21ec54ef88a2050ad6778a6beb08d9f3a21 (diff) | |
download | fork-ledger-42c7e6d3f9fd05e91df753112d37652a8d742c66.tar.gz fork-ledger-42c7e6d3f9fd05e91df753112d37652a8d742c66.tar.bz2 fork-ledger-42c7e6d3f9fd05e91df753112d37652a8d742c66.zip |
For cppunit builds, run autogen.sh before configure.
Diffstat (limited to 'lib')
-rw-r--r-- | lib/Makefile | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/Makefile b/lib/Makefile index 808d1f8b..4e806d31 100644 --- a/lib/Makefile +++ b/lib/Makefile @@ -29,7 +29,7 @@ boost-build: boost-release boost-debug cppunit-release: -(cd cppunit; make distclean) - (cd cppunit; \ + (cd cppunit; sh autogen.sh; \ ./configure CFLAGS="$(ARCH_CFLAGS)" \ LDFLAGS="$(ARCH_LDFLAGS)" \ --prefix=$(STOW_ROOT)/cppunit \ @@ -38,7 +38,7 @@ cppunit-release: cppunit-debug: -(cd cppunit; make distclean) - (cd cppunit; \ + (cd cppunit; sh autogen.sh; \ ./configure CPPFLAGS="-D_GLIBCXX_DEBUG=1" \ CFLAGS="-g $(ARCH_CFLAGS)" \ LDFLAGS="-g $(ARCH_LDFLAGS)" \ @@ -49,7 +49,7 @@ cppunit-debug: cppunit-build: cppunit-release cppunit-debug gdtoa-debug: - (cd gdtoa; \ + (cd gdtoa; autoreconf; \ ./configure CFLAGS="-g $(ARCH_CFLAGS)" \ LDFLAGS="-g $(ARCH_LDFLAGS)" \ --prefix=$(STOW_ROOT)/gdtoa \ |