home *** CD-ROM | disk | FTP | other *** search
/ Super Net 1 / SUPERNET_1.iso / PC / OTROS / UNIX / ARCHIE / CLIENTS / LOG_ARCH / MAKEFILE < prev    next >
Encoding:
Text File  |  1991-08-18  |  611 b   |  23 lines

  1. # Makefile for log_archie utility
  2.  
  3. # Set BIN and MAN to the directories you want to install log_archie executable
  4. # and man pages.
  5. BIN = ../bin
  6. MAN = ../man
  7. SECTION = man1
  8.  
  9. all: clipline log_archie
  10.  
  11. install: all
  12.     cp clipline $(BIN)
  13.     chmod +x log_archie
  14.     cp log_archie $(BIN)
  15.     chmod +x postarchie.awk
  16.     cp postarchie.awk $(BIN)
  17.     cp clipline.1 log_archie.1 $(MAN)/$(SECTION)
  18.     # Catman -M works properly on SunOS, creating $(MAN)/whatis, but on 
  19.     # Concentrix this tries to overwrite /usr/lib/whatis.
  20.     # Let's be careful and only run it if running on a Sun workstation.
  21.     sun
  22.     catman -M $(MAN)
  23.