home *** CD-ROM | disk | FTP | other *** search
Makefile | 1990-12-28 | 538 b | 20 lines |
- BIN = /usr/local/bin
- MS = l
- HOST = k+h+i+z+g+b
- FILES = Readme install.1 install.pl Makefile ll
-
- all:
- @echo "make install to install install in $(BIN)"
- @echo "make manpage to install the manpage in section $(MS), assuming you have BSD style man page directories"
-
- install: install.pl
- ./install.pl -r -c -m 755 -l install.pl $(HOST):$(BIN)/install
-
- # for machines with BSD style manpages
- manpage: install.1
- ./install.pl -r -c -m 644 -l install.1 $(HOST):/usr/man/man$(MS)/install.$(MS)
-
- shar: $(FILES)
- shar $(FILES) > install.shar
-
-