home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 10 Tools / 10-Tools.zip / pccts.zip / pccts / makefile < prev    next >
Makefile  |  1994-03-31  |  928b  |  35 lines

  1. #
  2. # Main makefile for PCCTS 1.20
  3. #
  4. # Terence Parr
  5. # Purdue University
  6. # March 1994
  7. #
  8. # this can be set to /user/local/bin etc...
  9. BINDIR=bin
  10. #CC=cc
  11.  
  12. .SILENT:
  13.  
  14. pccts:
  15.     echo
  16.     echo "               Welcome to PCCTS 1.20 installation"
  17.     echo "                     Released April 1, 1994"
  18.     echo
  19.     echo "                           Featuring"
  20.     echo "         ANTLR  -- ANother Tool for Language Recognition"
  21.     echo "         DLG    -- DFA-based Lexical Analyzer"
  22.     echo "         C      -- ANSI grammar with symbol table management (not yet)"
  23.     echo "         Pascal -- ISO Pascal with symbol table management (not yet)"
  24.     echo
  25. #
  26.     echo Making executables...
  27.     (cd antlr; make -s)
  28.     echo antlr executable now in $(BINDIR)
  29.     (cd dlg; make -s)
  30.     echo dlg executable now in $(BINDIR)
  31.     (cd support/genmk; make -s; mv genmk ../../$(BINDIR))
  32.     echo genmk executable now in $(BINDIR)
  33.     echo
  34.     echo "       PCCTS 1.20 installation complete (have a nice day)"
  35.