diff options
author | Randy J. Ray <rjray@uswest.com> | 1997-04-17 19:32:17 -0600 |
---|---|---|
committer | Chip Salzenberg <chip@atlantic.net> | 1997-04-18 00:00:00 +0000 |
commit | dbadb36a131d7470b403a8da3d15386252925455 (patch) | |
tree | 7af930ec304014f9a2b9334eff523144a8d5633e /Makefile.SH | |
parent | ba7b5225a182490f0fddd225ae43578870f30c47 (diff) | |
download | perl-dbadb36a131d7470b403a8da3d15386252925455.tar.gz |
Minor, optional patch to Makefile.SH
This is the (minor) change I made to add a "purecovperl" target to the
Makefile. Just a copy of the pureperl and quantperl targets:
p5p-msgid: rjray-9703180132.AA00374040@snakepit.ecte.uswc.uswest.com
Diffstat (limited to 'Makefile.SH')
-rwxr-xr-x | Makefile.SH | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/Makefile.SH b/Makefile.SH index 5beeca0d67..db4e759da8 100755 --- a/Makefile.SH +++ b/Makefile.SH @@ -281,6 +281,9 @@ perl: $& perlmain$(OBJ_EXT) $(LIBPERL) $(DYNALOADER) $(static_ext) ext.libs pureperl: $& perlmain$(OBJ_EXT) $(LIBPERL) $(DYNALOADER) $(static_ext) ext.libs purify $(CC) $(LARGE) $(CLDFLAGS) $(CCDLFLAGS) -o pureperl perlmain$(OBJ_EXT) $(DYNALOADER) $(static_ext) $(LLIBPERL) `cat ext.libs` $(libs) +purecovperl: $& perlmain$(OBJ_EXT) $(LIBPERL) $(DYNALOADER) $(static_ext) ext.libs + purecov $(CC) $(LARGE) $(CLDFLAGS) $(CCDLFLAGS) -o purecovperl perlmain$(OBJ_EXT) $(DYNALOADER) $(static_ext) $(LLIBPERL) `cat ext.libs` $(libs) + quantperl: $& perlmain$(OBJ_EXT) $(LIBPERL) $(DYNALOADER) $(static_ext) ext.libs quantify $(CC) $(LARGE) $(CLDFLAGS) $(CCDLFLAGS) -o quantperl perlmain$(OBJ_EXT) $(DYNALOADER) $(static_ext) $(LLIBPERL) `cat ext.libs` $(libs) |