home *** CD-ROM | disk | FTP | other *** search
/ Source Code 1992 March / Source_Code_CD-ROM_Walnut_Creek_March_1992.iso / usenet / altsrcs / 1 / 1040 / Makefile < prev    next >
Makefile  |  1990-12-28  |  538b  |  20 lines

  1. BIN = /usr/local/bin
  2. MS  = l
  3. HOST = k+h+i+z+g+b
  4. FILES = Readme install.1 install.pl Makefile ll
  5.  
  6. all:
  7.     @echo "make install  to install install in $(BIN)"
  8.     @echo "make manpage  to install the manpage in section $(MS), assuming you have BSD style man page directories"
  9.  
  10. install: install.pl
  11.     ./install.pl -r -c -m 755 -l install.pl $(HOST):$(BIN)/install
  12.  
  13. #    for machines with BSD style manpages
  14. manpage: install.1
  15.     ./install.pl -r -c -m 644 -l install.1 $(HOST):/usr/man/man$(MS)/install.$(MS)
  16.  
  17. shar: $(FILES)
  18.     shar $(FILES) > install.shar
  19.  
  20.