Nix/local.mk

17 lines
403 B
Makefile
Raw Normal View History

ifeq ($(MAKECMDGOALS), dist)
dist-files += $(shell cat .dist-files)
endif
2014-02-01 14:28:31 +01:00
dist-files += configure config.h.in perl/configure
2014-02-01 15:18:48 +01:00
2014-07-30 11:36:28 +02:00
clean-files += Makefile.config
2020-03-30 14:29:29 +02:00
GLOBAL_CXXFLAGS += -Wno-deprecated-declarations
2014-02-07 17:15:00 +01:00
$(foreach i, config.h $(wildcard src/lib*/*.hh), \
2015-06-09 11:14:36 +02:00
$(eval $(call install-file-in, $(i), $(includedir)/nix, 0644)))
$(GCH) $(PCH): src/libutil/util.hh config.h
2020-03-30 14:29:29 +02:00
GCH_CXXFLAGS = -I src/libutil