home *** CD-ROM | disk | FTP | other *** search
/ Usenet 1994 October / usenetsourcesnewsgroupsinfomagicoctober1994disk2.iso / misc / volume12 / rot / part01 / Makefile next >
Makefile  |  1990-05-05  |  129b  |  10 lines

  1. # Simple makefile for rot program
  2.  
  3. CFLAGS = -O #-DSYSV
  4.  
  5. rot:    rot.c
  6.     cc $(CFLAGS) -o rot rot.c -ltermlib
  7.  
  8. test:    rot
  9.     ./rot <rot.c
  10.