1
0
Fork 0
mirror of https://github.com/NixOS/nix synced 2024-09-20 11:11:03 -04:00
nix/src/libstore/Makefile.am

24 lines
671 B
Makefile
Raw Normal View History

pkglib_LTLIBRARIES = libstore.la
2003-10-20 06:05:01 -04:00
2005-07-22 10:52:45 -04:00
libstore_la_SOURCES = \
store-api.cc local-store.cc remote-store.cc derivations.cc build.cc misc.cc \
globals.cc references.cc pathlocks.cc gc.cc \
optimise-store.cc
pkginclude_HEADERS = \
store-api.hh local-store.hh remote-store.hh derivations.hh misc.hh \
globals.hh references.hh pathlocks.hh \
worker-protocol.hh
libstore_la_LIBADD = ../libutil/libutil.la ../boost/format/libformat.la ${aterm_lib} ${sqlite_lib}
2010-05-12 18:13:09 -04:00
EXTRA_DIST = schema.sql
2003-10-20 06:05:01 -04:00
AM_CXXFLAGS = -Wall \
2010-05-12 18:13:09 -04:00
${sqlite_include} -I$(srcdir)/.. -I$(srcdir)/../libutil
2010-02-18 08:16:59 -05:00
local-store.lo: schema.sql.hh
%.sql.hh: %.sql
../bin2c/bin2c schema < $< > $@ || (rm $@ && exit 1)