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

  1. BIN = aufslib
  2.  
  3. bin:
  4.     (cd stuffit; make)
  5.     (cd unstuffit; make)
  6.     (cd binhex; make)
  7.     (cd mcvert; make)
  8.     (cd capit; make)
  9.  
  10. install: bin
  11.     mv stuffit/stuffit $(BIN); strip $(BIN)/stuffit
  12.     mv stuffit/sit $(BIN); strip $(BIN)/sit
  13.     mv unstuffit/unstuffit $(BIN); strip $(BIN)/unstuffit
  14.     mv unstuffit/unsit $(BIN); strip $(BIN)/unsit
  15.     mv mcvert/mcvert $(BIN); strip $(BIN)/mcvert
  16.     mv capit/capit $(BIN); strip $(BIN)/capit
  17.     mv  binhex/binhex $(BIN); strip $(BIN)/binhex
  18.     mv binhex/unxbin $(BIN); strip $(BIN)/unxbin
  19.     cp shell/* $(BIN)
  20.  
  21. clean:
  22.     (cd stuffit; make clean)
  23.     (cd unstuffit; make clean)
  24.     (cd binhex; make clean)
  25.     (cd mcvert; make clean)
  26.     (cd capit; make clean)
  27.  
  28. reallyclean: clean
  29.     rm -f formatted/*.1 aufslib/*
  30.  
  31. format:
  32.     (cd formatted; makeman)
  33.