This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
Re: [perl #8835] fairly large regex optimization bug with 5.7.3
[perl5.git] / mint / Makefile
CommitLineData
61ae2fbf
JH
1# IMPORTANT: This Makefile is not intended to build Perl itself but
2# only to replace a broken pwd command!
3
4all: pwd
5
6pwd: pwd.c
7 $(CC) -O3 -o pwd pwd.c
8
9install: pwd
10 (new_pwd=`which pwd` && cp -f $$new_pwd $$new_pwd.broken \
11 && cp -f pwd $$new_pwd)
12
13clean:
14 rm -f pwd.o pwd
15