2013-11-25 16:38:33 +00:00
|
|
|
nix_perl_sources := \
|
2016-08-12 13:44:01 +00:00
|
|
|
lib/Nix/Store.pm \
|
|
|
|
lib/Nix/Manifest.pm \
|
|
|
|
lib/Nix/SSH.pm \
|
|
|
|
lib/Nix/CopyClosure.pm \
|
|
|
|
lib/Nix/Config.pm.in \
|
|
|
|
lib/Nix/Utils.pm
|
2013-11-25 16:38:33 +00:00
|
|
|
|
|
|
|
nix_perl_modules := $(nix_perl_sources:.in=)
|
|
|
|
|
|
|
|
$(foreach x, $(nix_perl_modules), $(eval $(call install-data-in, $(x), $(perllibdir)/Nix)))
|
|
|
|
|
2017-03-31 13:31:34 +00:00
|
|
|
lib/Nix/Store.cc: lib/Nix/Store.xs
|
2014-02-01 13:28:31 +00:00
|
|
|
$(trace-gen) xsubpp $^ -output $@
|
2013-11-25 16:38:33 +00:00
|
|
|
|
2017-03-31 13:31:34 +00:00
|
|
|
libraries += Store
|
2013-11-25 16:38:33 +00:00
|
|
|
|
2017-03-31 13:31:34 +00:00
|
|
|
Store_DIR := lib/Nix
|
2013-11-25 16:38:33 +00:00
|
|
|
|
2017-03-31 13:31:34 +00:00
|
|
|
Store_SOURCES := $(Store_DIR)/Store.cc
|
2013-11-25 16:38:33 +00:00
|
|
|
|
2017-03-31 13:31:34 +00:00
|
|
|
Store_CXXFLAGS = \
|
2017-04-26 15:04:45 +00:00
|
|
|
$(NIX_CFLAGS) \
|
|
|
|
-I$(shell perl -e 'use Config; print $$Config{archlibexp};')/CORE \
|
2017-03-31 13:31:34 +00:00
|
|
|
-D_FILE_OFFSET_BITS=64 \
|
|
|
|
-Wno-unknown-warning-option -Wno-unused-variable -Wno-literal-suffix \
|
2017-04-26 15:04:45 +00:00
|
|
|
-Wno-reserved-user-defined-literal -Wno-duplicate-decl-specifier -Wno-pointer-bool-conversion
|
2015-02-04 15:43:32 +00:00
|
|
|
|
2017-03-31 13:31:34 +00:00
|
|
|
Store_LDFLAGS := $(SODIUM_LIBS) $(NIX_LIBS)
|
2014-12-09 11:25:25 +00:00
|
|
|
|
2017-03-31 13:31:34 +00:00
|
|
|
ifeq (CYGWIN,$(findstring CYGWIN,$(OS)))
|
|
|
|
archlib = $(shell perl -E 'use Config; print $$Config{archlib};')
|
|
|
|
libperl = $(shell perl -E 'use Config; print $$Config{libperl};')
|
|
|
|
Store_LDFLAGS += $(shell find ${archlib} -name ${libperl})
|
|
|
|
endif
|
2013-11-25 16:38:33 +00:00
|
|
|
|
2017-03-31 13:31:34 +00:00
|
|
|
Store_ALLOW_UNDEFINED = 1
|
2013-11-25 16:38:33 +00:00
|
|
|
|
2017-03-31 13:31:34 +00:00
|
|
|
Store_FORCE_INSTALL = 1
|
2013-11-25 16:38:33 +00:00
|
|
|
|
2017-03-31 13:31:34 +00:00
|
|
|
Store_INSTALL_DIR = $(perllibdir)/auto/Nix/Store
|
2013-11-25 16:38:33 +00:00
|
|
|
|
2016-08-12 13:44:01 +00:00
|
|
|
clean-files += lib/Nix/Config.pm lib/Nix/Store.cc Makefile.config
|