diff options
author | Boris Kolpackov <boris@codesynthesis.com> | 2010-09-14 15:19:16 +0200 |
---|---|---|
committer | Boris Kolpackov <boris@codesynthesis.com> | 2010-09-14 15:19:16 +0200 |
commit | 349178ecf6c69be63bd81ce81d310404574cb373 (patch) | |
tree | fccbd90c0cae4f43389ec830c9d7924c30c62113 /template/Makefile.am | |
parent | 22dd2e8a904d26c18f6e4c634e14b21a8aaddc7d (diff) |
Establish base build system
Diffstat (limited to 'template/Makefile.am')
-rw-r--r-- | template/Makefile.am | 28 |
1 files changed, 28 insertions, 0 deletions
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 <boris@codesynthesis.com> +# 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) $< |