nix-gh/perl/local.mk

47 lines
1.2 KiB
Makefile
Raw Normal View History

2013-11-25 17:38:33 +01:00
nix_perl_sources := \
$(d)/lib/Nix/Store.pm \
$(d)/lib/Nix/Manifest.pm \
$(d)/lib/Nix/GeneratePatches.pm \
$(d)/lib/Nix/SSH.pm \
$(d)/lib/Nix/CopyClosure.pm \
$(d)/lib/Nix/Config.pm.in \
2014-01-21 17:39:19 +01:00
$(d)/lib/Nix/Utils.pm \
$(d)/lib/Nix/Crypto.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)))
ifeq ($(perlbindings), yes)
$(d)/lib/Nix/Store.cc: $(d)/lib/Nix/Store.xs
2014-02-01 14:28:31 +01:00
$(trace-gen) xsubpp $^ -output $@
2013-11-25 17:38:33 +01:00
2014-02-01 12:23:14 +01:00
libraries += Store
2013-11-25 17:38:33 +01:00
Store_DIR := $(d)/lib/Nix
2014-01-09 16:53:47 +01:00
Store_SOURCES := $(Store_DIR)/Store.cc
2013-11-25 17:38:33 +01:00
Store_LIBS = libstore libutil
2013-11-25 17:38:33 +01:00
Store_CXXFLAGS = \
-I$(shell $(perl) -e 'use Config; print $$Config{archlibexp};')/CORE \
2014-08-23 12:00:46 +02:00
-D_FILE_OFFSET_BITS=64 -Wno-unused-variable -Wno-literal-suffix -Wno-reserved-user-defined-literal
2013-11-25 17:38:33 +01:00
2014-12-09 12:25:25 +01: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
Store_ALLOW_UNDEFINED = 1
Store_FORCE_INSTALL = 1
Store_INSTALL_DIR = $(perllibdir)/auto/Nix/Store
endif
2014-02-01 12:23:14 +01:00
clean-files += $(d)/lib/Nix/Config.pm $(d)/lib/Nix/Store.cc