home *** CD-ROM | disk | FTP | other *** search
/ Usenet 1994 October / usenetsourcesnewsgroupsinfomagicoctober1994disk2.iso / misc / volume3 / send / Makefile < prev    next >
Makefile  |  1989-02-03  |  668b  |  33 lines

  1. SHELL=/bin/sh
  2. BINDIR = /u/local/bin
  3. MANDIR= /usr/man/man.LOCAL
  4.  
  5. all: send huh stom
  6.  
  7. send:    send.c
  8.     cc -O send.c -o send
  9.  
  10. huh:    huh.c
  11.     cc -O huh.c -o huh
  12.  
  13. stom:    stom.c
  14.     cc -O stom.c -o stom
  15.  
  16. shar:
  17.     shar README Makefile send.c huh.c stom.c doc > send.shar
  18.  
  19. install:
  20.     -rm -f $(BINDIR)/fs $(BINDIR)/fsend $(BINDIR)/fr $(BINDIR)/freply
  21.     -rm -f $(BINDIR)/reply $(BINDIR)/shout $(BINDIR)/send
  22.     cp send huh stom $(BINDIR)
  23.     ln $(BINDIR)/send $(BINDIR)/fs
  24.     ln $(BINDIR)/send $(BINDIR)/fsend
  25.     ln $(BINDIR)/send $(BINDIR)/fr
  26.     ln $(BINDIR)/send $(BINDIR)/freply
  27.     ln $(BINDIR)/send $(BINDIR)/reply
  28.     ln $(BINDIR)/send $(BINDIR)/shout
  29.     -cp doc/*.C $(MANDIR)
  30.  
  31. lint:
  32.     lint send.c -o send
  33.