forked from lix-project/lix
993fa94fb4
libstore so that the Perl bindings can use it as well. It's vital that the Perl bindings use the configuration file, because otherwise nix-copy-closure will fail with a ‘database locked’ message if the value of ‘use-sqlite-wal’ is changed from the default.
13 lines
270 B
Makefile
13 lines
270 B
Makefile
pkglib_LTLIBRARIES = libmain.la
|
|
|
|
libmain_la_SOURCES = shared.cc
|
|
|
|
libmain_la_LIBADD = ../libstore/libstore.la @BDW_GC_LIBS@
|
|
|
|
pkginclude_HEADERS = shared.hh
|
|
|
|
AM_CXXFLAGS = \
|
|
-DNIX_VERSION=\"$(VERSION)\" \
|
|
-I$(srcdir)/.. -I$(srcdir)/../libutil \
|
|
-I$(srcdir)/../libstore
|