nix-gh/perl/local.mk

44 lines
1.2 KiB
Makefile
Raw Permalink Normal View History

2013-11-25 17:38:33 +01:00
nix_perl_sources := \
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 17:38:33 +01:00
nix_perl_modules := $(nix_perl_sources:.in=)
$(foreach x, $(nix_perl_modules), $(eval $(call install-data-in, $(x), $(perllibdir)/Nix)))
2017-03-31 15:31:34 +02:00
lib/Nix/Store.cc: lib/Nix/Store.xs
2014-02-01 14:28:31 +01:00
$(trace-gen) xsubpp $^ -output $@
2013-11-25 17:38:33 +01:00
2017-03-31 15:31:34 +02:00
libraries += Store
2013-11-25 17:38:33 +01:00
2017-03-31 15:31:34 +02:00
Store_DIR := lib/Nix
2013-11-25 17:38:33 +01:00
2017-03-31 15:31:34 +02:00
Store_SOURCES := $(Store_DIR)/Store.cc
2013-11-25 17:38:33 +01:00
2017-03-31 15:31:34 +02:00
Store_CXXFLAGS = \
$(NIX_CFLAGS) \
-I$(shell perl -e 'use Config; print $$Config{archlibexp};')/CORE \
2017-03-31 15:31:34 +02:00
-D_FILE_OFFSET_BITS=64 \
-Wno-unknown-warning-option -Wno-unused-variable -Wno-literal-suffix \
-Wno-reserved-user-defined-literal -Wno-duplicate-decl-specifier -Wno-pointer-bool-conversion
2017-03-31 15:31:34 +02:00
Store_LDFLAGS := $(SODIUM_LIBS) $(NIX_LIBS)
2014-12-09 12:25:25 +01:00
2017-03-31 15:31:34 +02: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 17:38:33 +01:00
2017-03-31 15:31:34 +02:00
Store_ALLOW_UNDEFINED = 1
2013-11-25 17:38:33 +01:00
2017-03-31 15:31:34 +02:00
Store_FORCE_INSTALL = 1
2013-11-25 17:38:33 +01:00
2017-03-31 15:31:34 +02:00
Store_INSTALL_DIR = $(perllibdir)/auto/Nix/Store
2013-11-25 17:38:33 +01:00
clean-files += lib/Nix/Config.pm lib/Nix/Store.cc Makefile.config