Changes to make 'make dist' work.

This commit is contained in:
John Wiegley 2007-04-27 13:07:04 +00:00
parent 9369beb85b
commit 902b004de7
2 changed files with 4 additions and 3 deletions

View file

@ -123,6 +123,7 @@ pkginclude_HEADERS = \
qif.h \ qif.h \
quotes.h \ quotes.h \
reconcile.h \ reconcile.h \
register.h \
report.h \ report.h \
session.h \ session.h \
system.hh \ system.hh \
@ -152,7 +153,7 @@ info_TEXINFOS = ledger.texi
###################################################################### ######################################################################
lisp_LISP = ledger.el timeclock.el dist_lisp_LISP = ledger.el timeclock.el
###################################################################### ######################################################################
@ -216,7 +217,7 @@ UnitTests_CPPFLAGS = -I$(srcdir)/tests $(libledger_la_CPPFLAGS)
UnitTests_LDFLAGS = $(LIBADD_DL) UnitTests_LDFLAGS = $(LIBADD_DL)
UnitTests_LDADD = $(lib_LTLIBRARIES) gdtoa/libgdtoa.la -lcppunit UnitTests_LDADD = $(lib_LTLIBRARIES) gdtoa/libgdtoa.la -lcppunit
PyUnitTests_SOURCES = PyUnitTest.py PyUnitTests_SOURCES = PyUnitTests.py
PyUnitTests: PyUnitTests.py PyUnitTests: PyUnitTests.py
cat $(srcdir)/PyUnitTests.py | sed "s/%srcdir%/$(ESC_srcdir)/g" \ cat $(srcdir)/PyUnitTests.py | sed "s/%srcdir%/$(ESC_srcdir)/g" \

View file

@ -322,7 +322,7 @@ AC_ARG_ENABLE(pch,
yes) pch=true ;; yes) pch=true ;;
no) pch=false ;; no) pch=false ;;
*) AC_MSG_ERROR(bad value ${enableval} for --enable-pch) ;; *) AC_MSG_ERROR(bad value ${enableval} for --enable-pch) ;;
esac],[pch=true]) esac],[pch=false])
AM_CONDITIONAL(USE_PCH, test x$pch = xtrue) AM_CONDITIONAL(USE_PCH, test x$pch = xtrue)