home *** CD-ROM | disk | FTP | other *** search
/ Garbo / Garbo.cdr / mac / source / aufstols.zoo / aufstools.1 / unstuffit / Makefile < prev    next >
Makefile  |  1991-02-26  |  245b  |  17 lines

  1. GETOPT = 
  2. #GETOPT = getopt.o
  3.  
  4. unstuffit: unsit
  5.     rm -f unstuffit
  6.     ln unsit unstuffit
  7.  
  8. unsit : unsit.o updcrc.o $(GETOPT)
  9.     cc -o unsit unsit.o updcrc.o $(GETOPT)
  10.  
  11. unsit.o : unsit.c stuffit.h
  12. getopt.o : getopt.c
  13.  
  14.  
  15. clean:
  16.     rm -f unstuffit unsit *.o
  17.