1
0

Makefile.am 612 B

1234567891011121314151617181920212223
  1. SUBDIRS = include src test tools config doc
  2. EXTRA_DIST = autogen.sh configitems README.md VERSION requirements.json
  3. MAINTAINERCLEANFILES = \
  4. Makefile.in aclocal.m4 config.h.in config.log configure stamp-h.in
  5. pkgconfigdir = $(libdir)/pkgconfig
  6. pkgconfig_DATA = libpqxx.pc
  7. TESTS = tools/lint
  8. # Generate ChangeLog from git history. It goes all the way back through
  9. # the project's git, bzr, svn, and cvs days.
  10. dist-hook: ChangeLog
  11. ChangeLog: configure.ac
  12. git log --stat --name-only --date=short --abbrev-commit >$@
  13. # We use README.md, but automake expects plain README.
  14. README: README.md
  15. ln -s $< $@