From 9f0f020929c9e093405cc6193d2f227cab763912 Mon Sep 17 00:00:00 2001 From: Eelco Dolstra Date: Tue, 18 Nov 2003 10:55:27 +0000 Subject: * libnix -> libstore. --- src/libstore/Makefile.am | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 src/libstore/Makefile.am (limited to 'src/libstore/Makefile.am') diff --git a/src/libstore/Makefile.am b/src/libstore/Makefile.am new file mode 100644 index 000000000000..472b1b079313 --- /dev/null +++ b/src/libstore/Makefile.am @@ -0,0 +1,17 @@ +noinst_LIBRARIES = libstore.a + +libstore_a_SOURCES = \ + store.cc expr.cc normalise.cc exec.cc \ + globals.cc db.cc references.cc pathlocks.cc + +AM_CXXFLAGS = -DSYSTEM=\"@host@\" -Wall \ + -I.. -I../../externals/inst/include -I../libutil + +EXTRA_DIST = *.hh *.h test-builder-*.sh + +check_PROGRAMS = test-aterm + +test_aterm_SOURCES = test-aterm.cc +test_aterm_LDADD = libstore.a $(LDADD) ../boost/format/libformat.a \ + -L../../externals/inst/lib -ldb_cxx -lATerm + -- cgit 1.4.1