home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 10 Tools / 10-Tools.zip / pccts1.zip / ADVTUT / MAKEFILE < prev    next >
Text File  |  1993-04-01  |  521b  |  36 lines

  1. #
  2. # Overall makefile for PCCTS 1.0x Advanced Tutorial
  3. #
  4. # Terence Parr
  5. # Purdue University Electrical Engineering
  6. # December 1, 1992
  7. #
  8. all:
  9.     make scrub
  10.     make -f makefile.1
  11.     make scrub
  12.     make -f makefile.2
  13.     make scrub
  14.     make -f makefile.3
  15.     make scrub
  16.     make -f makefile.4
  17.     
  18. tut1: tut1.g
  19.     make scrub
  20.     make -f makefile.1
  21.  
  22. tut2: tut2.g
  23.     make scrub
  24.     make -f makefile.2
  25.  
  26. tut3: tut3.g
  27.     make scrub
  28.     make -f makefile.3
  29.  
  30. tut4: tut3.g
  31.     make scrub
  32.     make -f makefile.4
  33.  
  34. scrub:
  35.     rm -f *.o core parser.dlg mode.h tokens.h err.c tut[1-4].c
  36.