Changeset 6760 for lib/Perl6/MakeMaker.pm
- Timestamp:
- 09/06/05 00:53:15 (3 years ago)
- Files:
-
- 1 modified
-
lib/Perl6/MakeMaker.pm (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
lib/Perl6/MakeMaker.pm
r5532 r6760 87 87 push @to_install, glob("src/*"); 88 88 89 my $cp_to_install = join "\n", map " \$(CP) $_ \$(INST_ARCHLIB)", @to_install;89 my $cp_to_install = join "\n", map " \$(CP) $_ \$(INST_ARCHLIB)", @to_install; 90 90 my ($ghc, $ghc_version, $ghc_flags) = assert_ghc(); 91 91 … … 95 95 96 96 $module_name.o :: $module_name.hs 97 $ghc --make -isrc -Isrc $ghc_flags \$(GHC_FLAGS) $module_name.hs97 $ghc --make -isrc -Isrc $ghc_flags \$(GHC_FLAGS) $module_name.hs 98 98 99 99 $module_name.hs :: $module_path 100 pugs --external $module_name $module_path > $module_name.hs100 pugs --external $module_name $module_path > $module_name.hs 101 101 _ 102 102 }
