home *** CD-ROM | disk | FTP | other *** search
/ minnie.tuhs.org / unixen.tar / unixen / PDP-11 / Trees / V7 / usr / src / cmd / xsend / makefile < prev    next >
Encoding:
Makefile  |  1979-01-10  |  493 b   |  23 lines

  1. CFLAGS = -n -O -s
  2.  
  3. cp:    all
  4.     cp xsend xget enroll /bin
  5.     rm *.o xsend xget enroll
  6.  
  7. cmp:    all
  8.     cmp xsend /bin/xsend
  9.     cmp xget /bin/xget
  10.     cmp enroll /bin/enroll
  11.     rm *.o xsend xget enroll
  12.  
  13. all:    enroll xsend xget
  14. enroll:    enroll.o lib.o
  15.     cc -n -s enroll.o lib.o -lmp -o enroll
  16. xget:    xget.o lib.o
  17.     cc -n -s xget.o lib.o -lmp -o xget
  18. xsend:    xsend.o lib.o
  19.     cc -n -s xsend.o lib.o -lmp -o xsend
  20. enroll.o xget.o xsend.o lib.o:    xmail.h
  21. list:
  22.     @pr -2 -w124 m.h xmail.h enroll.c xsend.c xget.c lib.c makefile
  23.