diff options
author | Ian Lynagh <ian@well-typed.com> | 2013-02-21 15:32:46 +0000 |
---|---|---|
committer | Ian Lynagh <ian@well-typed.com> | 2013-02-21 15:47:16 +0000 |
commit | f1368057296b00dbf7100b4308c8fa3c6844d797 (patch) | |
tree | 2bac0efc2d9006e2bea7069bc9e31b2fa2178783 /rules/hs-suffix-rules-srcdir.mk | |
parent | 0565f88e41bcd33fff52d884e2747c333d5d122e (diff) | |
download | haskell-f1368057296b00dbf7100b4308c8fa3c6844d797.tar.gz |
Separate the non-way-specific hs-suffix rules
This means we don't define them multiple times
Diffstat (limited to 'rules/hs-suffix-rules-srcdir.mk')
-rw-r--r-- | rules/hs-suffix-rules-srcdir.mk | 50 |
1 files changed, 50 insertions, 0 deletions
diff --git a/rules/hs-suffix-rules-srcdir.mk b/rules/hs-suffix-rules-srcdir.mk new file mode 100644 index 0000000000..8ed72af3be --- /dev/null +++ b/rules/hs-suffix-rules-srcdir.mk @@ -0,0 +1,50 @@ +# ----------------------------------------------------------------------------- +# +# (c) 2009 The University of Glasgow +# +# This file is part of the GHC build system. +# +# To understand how the build system works and how to modify it, see +# http://hackage.haskell.org/trac/ghc/wiki/Building/Architecture +# http://hackage.haskell.org/trac/ghc/wiki/Building/Modifying +# +# ----------------------------------------------------------------------------- + + +define hs-suffix-rules-srcdir +# args: $1 = dir, $2 = distdir, $3 = srcdir + +# Preprocessing Haskell source + +ifneq "$$(BINDIST)" "YES" + +$1/$2/build/%.hs : $1/$3/%.ly | $$$$(dir $$$$@)/. + $$(call cmd,HAPPY) $$($1_$2_ALL_HAPPY_OPTS) $$< -o $$@ + +$1/$2/build/%.hs : $1/$3/%.y | $$$$(dir $$$$@)/. + $$(call cmd,HAPPY) $$($1_$2_ALL_HAPPY_OPTS) $$< -o $$@ + +$1/$2/build/%.hs : $1/$2/build/%.ly | $$$$(dir $$$$@)/. + $$(call cmd,HAPPY) $$($1_$2_ALL_HAPPY_OPTS) $$< -o $$@ + +$1/$2/build/%.hs : $1/$2/build/%.y | $$$$(dir $$$$@)/. + $$(call cmd,HAPPY) $$($1_$2_ALL_HAPPY_OPTS) $$< -o $$@ + +$1/$2/build/%.hs : $1/$3/%.x | $$$$(dir $$$$@)/. + $$(call cmd,ALEX) $$($1_$2_ALL_ALEX_OPTS) $$< -o $$@ + +$1/$2/build/%_hsc.c $1/$2/build/%_hsc.h $1/$2/build/%.hs : $1/$3/%.hsc $$(HSC2HS_INPLACE) | $$$$(dir $$$$@)/. + $$(call cmd,HSC2HS_INPLACE) $$($1_$2_ALL_HSC2HS_OPTS) $$< -o $$@ + +# Now the rules for hs-boot files. + +$1/$2/build/%.hs-boot : $1/$3/%.hs-boot + "$$(CP)" $$< $$@ + +$1/$2/build/%.lhs-boot : $1/$3/%.lhs-boot + "$$(CP)" $$< $$@ + +endif + +endef + |