diff options
author | Ian Lynagh <igloo@earth.li> | 2009-04-26 11:42:15 +0000 |
---|---|---|
committer | Ian Lynagh <igloo@earth.li> | 2009-04-26 11:42:15 +0000 |
commit | 34cc75e1a62638f2833815746ebce0a9114dc26b (patch) | |
tree | ef21e8fd7af1356beea9cce7d6efb8a65374e24c /rules/includes-sources.mk | |
parent | 74e1368d4688ee16f6decdf2cd3ebe27506b26ba (diff) | |
download | haskell-34cc75e1a62638f2833815746ebce0a9114dc26b.tar.gz |
GHC new build system megapatch
Diffstat (limited to 'rules/includes-sources.mk')
-rw-r--r-- | rules/includes-sources.mk | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/rules/includes-sources.mk b/rules/includes-sources.mk new file mode 100644 index 0000000000..de66b39305 --- /dev/null +++ b/rules/includes-sources.mk @@ -0,0 +1,14 @@ + +define includes-sources # args: $1 = dir, $2 = distdir + +ifeq "$$($1_$2_INCLUDE_DIRS)" "" +$1_$2_INCLUDE_DIRS = . +endif + +$1_$2_INSTALL_INCLUDES_SRCS :=\ + $$(foreach file,$$($1_$2_INSTALL_INCLUDES),\ + $$(firstword \ + $$(wildcard \ + $$(foreach dir,$$($1_$2_INCLUDE_DIRS),\ + $1/$$(dir)/$$(file))))) +endef |