From 349178ecf6c69be63bd81ce81d310404574cb373 Mon Sep 17 00:00:00 2001 From: Boris Kolpackov Date: Tue, 14 Sep 2010 15:19:16 +0200 Subject: Establish base build system --- template/Makefile.am | 28 ++++++++++++++++++++++++++++ 1 file changed, 28 insertions(+) create mode 100644 template/Makefile.am (limited to 'template/Makefile.am') diff --git a/template/Makefile.am b/template/Makefile.am new file mode 100644 index 0000000..4c76f3e --- /dev/null +++ b/template/Makefile.am @@ -0,0 +1,28 @@ +# file : template/Makefile.am +# author : Boris Kolpackov +# copyright : not copyrighted - public domain + +EXTRA_DIST = __file__(extra_dist) + +noinst_PROGRAMS = driver +driver_SOURCES = driver.cxx database.hxx __path__(extra_sources) __path__(extra_headers) + +if DATABASE_MYSQL +AM_CPPFLAGS = -DDATABASE_MYSQL +endif + +TESTS=$(top_builddir)/tester +TESTS_ENVIRONMENT=top_builddir=$(top_builddir); export top_builddir; + +# ODB compilation. +# +driver_SOURCES += __path__(odb_header_stem).hxx +nodist_driver_SOURCES = __path__(odb_header_stem)-odb.cxx +BUILT_SOURCES = __path__(odb_header_stem)-odb.hxx +CLEANFILES = __path__(odb_header_stem)-odb.hxx __path__(odb_header_stem)-odb.ixx __path__(odb_header_stem)-odb.cxx + +ODB = @ODB@ +ODBFLAGS = @ODBFLAGS@ + +__path__(odb_header_stem)-odb.hxx: __path__(odb_header_stem).hxx + $(ODB) $(ODBCPPFLAGS) $(CPPFLAGS) $(ODBFLAGS) __value__(odb_options) $< -- cgit v1.1