home *** CD-ROM | disk | FTP | other *** search
/ Garbo / Garbo.cdr / pc / source / rot / Makefile next >
Encoding:
Makefile  |  1991-05-19  |  214 b   |  12 lines

  1. # Simple makefile for rot program
  2. # for that bloody stupid System V Make
  3. SHELL=/bin/sh
  4.  
  5. CFLAGS = -O #-DSYSV
  6.  
  7. rot:    rot.c
  8.     cc $(CFLAGS) -o rot rot.c -ltermlib
  9.  
  10. rot.shar: Makefile rot.c
  11.     shar >rot.shar Makefile rot.c
  12.