2014-02-01 17:30:24 +02:00
|
|
|
ifeq ($(MAKECMDGOALS), dist)
|
2015-10-15 21:29:38 +03:00
|
|
|
# Make sure we are in repo root with `--git-dir`
|
|
|
|
dist-files += $(shell git --git-dir=.git ls-files || find * -type f)
|
2014-02-01 17:30:24 +02:00
|
|
|
endif
|
2014-02-01 15:28:31 +02:00
|
|
|
|
2016-08-12 16:44:01 +03:00
|
|
|
dist-files += configure config.h.in nix.spec perl/configure
|
2014-02-01 16:18:48 +02:00
|
|
|
|
2014-07-30 12:36:28 +03:00
|
|
|
clean-files += Makefile.config
|
|
|
|
|
2017-04-14 15:42:20 +03:00
|
|
|
GLOBAL_CXXFLAGS += -I . -I src -I src/libutil -I src/libstore -I src/libmain -I src/libexpr
|
2014-02-07 18:15:00 +02:00
|
|
|
|
2017-02-07 19:49:17 +02:00
|
|
|
$(foreach i, config.h $(call rwildcard, src/lib*, *.hh), \
|
2015-06-09 12:14:36 +03:00
|
|
|
$(eval $(call install-file-in, $(i), $(includedir)/nix, 0644)))
|
2014-03-05 12:11:24 +02:00
|
|
|
|
2014-08-20 19:33:07 +03:00
|
|
|
$(foreach i, $(call rwildcard, src/boost, *.hpp), $(eval $(call install-file-in, $(i), $(includedir)/nix/$(patsubst src/%/,%,$(dir $(i))), 0644)))
|