Changeset 3905
- Timestamp:
- 05/26/05 11:57:51 (4 years ago)
- svk:copy_cache_prev:
- 5482
- Files:
-
- 1 modified
-
Makefile.PL (modified) (4 diffs)
Legend:
- Unmodified
- Added
- Removed
-
Makefile.PL
r3903 r3905 123 123 my $embed_flags = ""; 124 124 my $hsc2hs_flags = ""; 125 my $ccdlflags = ""; 125 126 126 127 if ($ENV{PUGS_EMBED} and $ENV{PUGS_EMBED} =~ /\bperl5\b/i) { … … 128 129 $ghc_output .= " src/perl5/perl5.o "; 129 130 $ghc_flags .= " -DPUGS_HAVE_PERL5 "; 131 $ccdlflags .= " -optl $Config{ccdlflags} "; 130 132 } 131 133 else { … … 248 250 249 251 profiled :: src/Pugs/Config.hs @srcfiles $version_h @prereqs 250 $ghc $threaded -O -auto-all -prof --make $profiled_flags $ ghc_output252 $ghc $threaded -O -auto-all -prof --make $profiled_flags $ccdlflags $ghc_output 251 253 252 254 pugs.prof :: profiled … … 256 258 257 259 optimized :: src/Pugs/Config.hs @srcfiles $version_h @prereqs 258 $ghc $threaded -O --make $ghc_flags $embed_flags $ ghc_output260 $ghc $threaded -O --make $ghc_flags $embed_flags $ccdlflags $ghc_output 259 261 260 262 unoptimised :: unoptimized 261 263 262 264 unoptimized :: src/Pugs/Config.hs @srcfiles $version_h @prereqs 263 $ghc $threaded -O0 --make $ghc_flags $embed_flags $ ghc_output265 $ghc $threaded -O0 --make $ghc_flags $embed_flags $ccdlflags $ghc_output 264 266 265 267 $pugs : src/Pugs/Config.hs @srcfiles $version_h @prereqs 266 $ghc $threaded -O --make $ghc_flags $embed_flags $ ghc_output268 $ghc $threaded -O --make $ghc_flags $embed_flags $ccdlflags $ghc_output 267 269 268 270 smoke : $pugs util/run-smoke.pl
