mirror of
https://github.com/privatevoid-net/nix-super.git
synced 2024-11-27 08:16:14 +02:00
14 lines
440 B
Makefile
14 lines
440 B
Makefile
lib_LTLIBRARIES = libmain.la
|
|
|
|
libmain_la_SOURCES = shared.cc shared.hh
|
|
|
|
AM_CXXFLAGS = \
|
|
-DNIX_STORE_DIR=\"$(storedir)\" \
|
|
-DNIX_DATA_DIR=\"$(datadir)\" \
|
|
-DNIX_STATE_DIR=\"$(localstatedir)/nix\" \
|
|
-DNIX_LOG_DIR=\"$(localstatedir)/log/nix\" \
|
|
-DNIX_CONF_DIR=\"$(sysconfdir)/nix\" \
|
|
-DNIX_LIBEXEC_DIR=\"$(libexecdir)\" \
|
|
-DNIX_VERSION=\"$(VERSION)\" \
|
|
-I$(srcdir)/.. ${aterm_include} -I$(srcdir)/../libutil \
|
|
-I$(srcdir)/../libstore
|