From 027caa7f6b842751f12c1d08e90bde91a0e38a5a Mon Sep 17 00:00:00 2001 From: Ian Lynagh Date: Fri, 19 Sep 2008 11:58:16 +0000 Subject: [PATCH] Add HpcParser.hs to source dists --- Makefile | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/Makefile b/Makefile index 3de5928..16fe934 100644 --- a/Makefile +++ b/Makefile @@ -533,6 +533,12 @@ copy_generated_compiler_file = \ $(CP) $(FPTOOLS_TOP_ABS)/compiler/dist-stage2/build/$2.hs compiler/$1/ ; \ mv compiler/$1/$2.$3 compiler/$1/$2.$3.source ; \ fi +copy_generated_util_file = \ + if test -f $(FPTOOLS_TOP_ABS)/utils/$1/dist-install/build/$1/$1-tmp/$2.hs; \ + then \ + $(CP) $(FPTOOLS_TOP_ABS)/utils/$1/dist-install/build/$1/$1-tmp/$2.hs utils/$1/ ; \ + mv utils/$1/$2.$3 utils/$1/$2.$3.source ; \ + fi dist :: $(RM) -rf $(SRC_DIST_DIR) @@ -551,6 +557,7 @@ dist :: && $(call copy_generated_compiler_file,parser,Lexer,x) \ && $(call copy_generated_compiler_file,parser,Parser,y.pp) \ && $(call copy_generated_compiler_file,parser,ParserCore,y) \ + && $(call copy_generated_util_file,hpc,HpcParser,y) \ && $(RM) -rf compiler/stage[123] mk/build.mk \ && $(FIND) $(SRC_DIST_DIRS) \( -name _darcs -o -name SRC -o -name "autom4te*" -o -name "*~" -o -name ".cvsignore" -o -name "\#*" -o -name ".\#*" -o -name "log" -o -name "*-SAVE" -o -name "*.orig" -o -name "*.rej" \) -print | xargs $(RM) -rf \ ) -- 1.7.10.4