home *** CD-ROM | disk | FTP | other *** search
/ Usenet 1994 October / usenetsourcesnewsgroupsinfomagicoctober1994disk2.iso / misc / volume39 / agetty / part01 / Makefile < prev    next >
Makefile  |  1993-08-23  |  448b  |  22 lines

  1. # @(#) Makefile 1.5 9/1/91 23:21:21 
  2.  
  3. # On the CFLAGS line, specify -DUSE_SYSLOG if you want diagnostics to be
  4. # reported via the syslog(3) facility. Otherwise, agetty will report its
  5. # problems to /dev/console.
  6.  
  7. SHELL    = /bin/sh
  8. CFLAGS    = -s -O # -DUSE_SYSLOG
  9. FILES    = README agetty.c agetty.8 Makefile
  10.  
  11. agetty: agetty.c
  12.     $(CC) $(CFLAGS) -o $@ $?
  13.  
  14. clean:
  15.     rm -f agetty.o agetty
  16.  
  17. shar:    $(FILES)
  18.     @shar $(FILES)
  19.  
  20. agetty.8:
  21.     srctoman agetty.c >agetty.8
  22.