source:
trunk/essentials/dev-lang/perl/mint/Makefile
| Last change on this file was 3181, checked in by , 19 years ago | |
|---|---|
| File size: 294 bytes | |
| Line | |
|---|---|
| 1 | # IMPORTANT: This Makefile is not intended to build Perl itself but |
| 2 | # only to replace a broken pwd command! |
| 3 | |
| 4 | all: pwd |
| 5 | |
| 6 | pwd: pwd.c |
| 7 | $(CC) -O3 -o pwd pwd.c |
| 8 | |
| 9 | install: pwd |
| 10 | (new_pwd=`which pwd` && cp -f $$new_pwd $$new_pwd.broken \ |
| 11 | && cp -f pwd $$new_pwd) |
| 12 | |
| 13 | clean: |
| 14 | rm -f pwd.o pwd |
| 15 |
Note:
See TracBrowser
for help on using the repository browser.
