]> git.proxmox.com Git - mirror_edk2.git/blobdiff - Tools/CCode/Source/Pccts/makefile
Retiring the ANT/JAVA build and removing the older EDK II packages that required...
[mirror_edk2.git] / Tools / CCode / Source / Pccts / makefile
diff --git a/Tools/CCode/Source/Pccts/makefile b/Tools/CCode/Source/Pccts/makefile
deleted file mode 100644 (file)
index f9b2dd2..0000000
+++ /dev/null
@@ -1,66 +0,0 @@
-#\r
-# Main makefile for PCCTS 1.33MR33     /* MRXXX */\r
-#\r
-# Terence Parr\r
-# Parr Research Corporation\r
-#\r
-# verbosity versus silence...\r
-PSss=\r
-#\r
-# this can be set to /user/local/bin etc...\r
-BINDIR=bin\r
-# This part added by Thomas Herter, M"unchen, Germany. See also manpages\r
-# target.\r
-MANDIR=$(HOME)/man\r
-MANEXT=1\r
-MANFILES=dlg/dlg.1 antlr/antlr.1\r
-\r
-#CC=cc\r
-#CC=gcc\r
-#COPT=-O2\r
-\r
-pccts:\r
-       @echo " "\r
-       @echo "             Welcome to PCCTS 1.33MR33 installation"\r
-       @echo " "\r
-       @echo "             (Version 1.33 Maintenance Release #33)" # mrxxx\r
-       @echo " "\r
-       @echo "                  Released 19 April 2002"\r
-       @echo " "\r
-       @echo "                        Featuring"\r
-       @echo "         ANTLR     -- ANother Tool for Language Recognition"\r
-       @echo "         DLG       -- DFA-based Lexical Analyzer Generator"\r
-       @echo "         SORCERER  -- Source-to-source translator (tree walker)" \r
-       @echo " "\r
-       @echo "                  http://www.antlr.org"  \r
-       @echo " "\r
-       @echo "             Trouble reports to tmoog@polhode.com"\r
-       @echo "             Additional PCCTS 1.33 information at"\r
-       @echo "                  http://www.polhode.com"\r
-       @echo\r
-       @echo\r
-       @echo "To substitute gcc for CC to invoke compiler: make CC=gcc"\r
-       @echo "If there are problems with cr and lf try: unzip -a ..."\r
-       @echo\r
-#\r
-       @if [ ! -d $(BINDIR) ] ; then mkdir $(BINDIR) ; fi\r
-       @echo Making executables...\r
-       (cd ./antlr; $(MAKE) CC="$(CC)" COPT="$(COPT)")\r
-       @echo antlr executable now in $(BINDIR)\r
-       (cd ./dlg; $(MAKE) CC="$(CC)" COPT="$(COPT)")\r
-       @echo dlg executable now in $(BINDIR)\r
-       @echo\r
-       @echo "       PCCTS 1.33MR33 installation complete"  # MRXXX\r
-\r
-clean:\r
-       (cd ./antlr; $(MAKE) -s clean)\r
-       (cd ./dlg; $(MAKE) -s clean)\r
-\r
-\r
-manpages:\r
-       # mkdir -p $(MANDIR)/man$(MANEXT)\r
-       if [ ! -d $(MANDIR) ] ; then \\r
-         mkdir $(MANDIR) ; fi\r
-       if [ ! -d $(MANDIR)/man$(MANEXT) ] ; then \\r
-         mkdir $(MANDIR)/man$(MANEXT); fi\r
-       cp -p $(MANFILES) $(MANDIR)/man$(MANEXT)\r