diff options
author | Eelco Dolstra <e.dolstra@tudelft.nl> | 2003-11-18T10·55+0000 |
---|---|---|
committer | Eelco Dolstra <e.dolstra@tudelft.nl> | 2003-11-18T10·55+0000 |
commit | 9f0f020929c9e093405cc6193d2f227cab763912 (patch) | |
tree | 833aad12f6db91e77ff2fb47a2bcb54a0ea9d89f /src/libstore/Makefile.am | |
parent | 8798fae30450a88c339c8f23d7e0c75f5df2ef1c (diff) |
* libnix -> libstore.
Diffstat (limited to 'src/libstore/Makefile.am')
-rw-r--r-- | src/libstore/Makefile.am | 17 |
1 files changed, 17 insertions, 0 deletions
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 + |