home *** CD-ROM | disk | FTP | other *** search
/ Usenet 1994 October / usenetsourcesnewsgroupsinfomagicoctober1994disk2.iso / misc / volume9 / agetty / Makefile < prev    next >
Makefile  |  1989-12-14  |  257b  |  18 lines

  1. # @(#) Makefile 1.3 11/26/89 22:20:28 
  2.  
  3. SHELL    = /bin/sh
  4. CFLAGS    = -s -O
  5. FILES    = README agetty.c agetty.8 Makefile
  6.  
  7. agetty: agetty.c
  8.     cc $(CFLAGS) -o $@ $?
  9.  
  10. clean:
  11.     rm -f agetty.o agetty
  12.  
  13. shar:    $(FILES)
  14.     @shar $(FILES)
  15.  
  16. agetty.8:
  17.     srctoman agetty.c >agetty.8
  18.