home *** CD-ROM | disk | FTP | other *** search
/ Usenet 1994 October / usenetsourcesnewsgroupsinfomagicoctober1994disk2.iso / unix / volume15 / newgetty / Makefile next >
Makefile  |  1988-06-01  |  240b  |  15 lines

  1. ##
  2. ##
  3.  
  4. # Apparently this is needed for Xenix:
  5. #LIBS=-lx
  6. CFLAGS=-O
  7.  
  8. all:        newgetty newgetty.man
  9. install:    all
  10.     @echo Install according to local convention
  11.  
  12. newgetty:    newgetty.c
  13.     @rm -f newgetty
  14.     $(CC) -o newgetty $(CFLAGS) newgetty.c $(LIBS)
  15.