home *** CD-ROM | disk | FTP | other *** search
/ rtsi.com / 2014.01.www.rtsi.com.tar / www.rtsi.com / OS9 / OSK / APPS / macutils.lzh / MACUTILS / UNSIT / makefile < prev    next >
Makefile  |  1996-02-02  |  275b  |  13 lines

  1. CC = cc
  2. CFLAGS = -r -dOSK
  3.  
  4. unsit : unsit.r updcrc.r getopt.r
  5.     $(CC) -FD=unsit unsit.r updcrc.r getopt.r -l=/dd/lib/blarslib.l
  6.  
  7. unsit.r : unsit.c stuffit.h
  8.    $(CC) $(CFLAGS) unsit.c
  9. getopt.r :getopt.c
  10.   $(CC) $(CFLAGS) getopt.c
  11. updcrc.r : updcrc.c
  12.   $(CC) $(CFLAGS) updcrc.c
  13.