]> git.proxmox.com Git - mirror_edk2.git/blobdiff - Tools/Source/TianoTools/Pccts/antlr/makefile1
Restructuring for better separation of Tool packages.
[mirror_edk2.git] / Tools / Source / TianoTools / Pccts / antlr / makefile1
diff --git a/Tools/Source/TianoTools/Pccts/antlr/makefile1 b/Tools/Source/TianoTools/Pccts/antlr/makefile1
deleted file mode 100644 (file)
index dffc709..0000000
+++ /dev/null
@@ -1,96 +0,0 @@
-#\r
-# Makefile for ANTLR 1.33\r
-#\r
-# SOFTWARE RIGHTS\r
-#\r
-# We reserve no LEGAL rights to the Purdue Compiler Construction Tool\r
-# Set (PCCTS) -- PCCTS is in the public domain.  An individual or\r
-# company may do whatever they wish with source code distributed with\r
-# PCCTS or the code generated by PCCTS, including the incorporation of\r
-# PCCTS, or its output, into commerical software.\r
-# \r
-# We encourage users to develop software with PCCTS.  However, we do ask\r
-# that credit is given to us for developing PCCTS.  By "credit",\r
-# we mean that if you incorporate our source code into one of your\r
-# programs (commercial product, research project, or otherwise) that you\r
-# acknowledge this fact somewhere in the documentation, research report,\r
-# etc...  If you like PCCTS and have developed a nice tool with the\r
-# output, please mention that you developed it using PCCTS.  In\r
-# addition, we ask that this header remain intact in our source code.\r
-# As long as these guidelines are kept, we expect to continue enhancing\r
-# this system and expect to make other tools available as they are\r
-# completed.\r
-#\r
-# ANTLR 1.33\r
-# Terence Parr\r
-# Parr Research Corporation\r
-# with Purdue University\r
-# and AHPCRC, University of Minnesota\r
-# 1989-1995\r
-#\r
-# Ported to Borland C++, IBM C-Set/2 and Microsoft 6.0 by\r
-# Ed Harfmann\r
-# Micro Data Base Systems\r
-# Lafayette, Indiana\r
-#\r
-SET=../support/set\r
-PCCTS_H=../h\r
-\r
-#\r
-#   UNIX  (default)\r
-#\r
-CC=cc\r
-ANTLR=${WORKSPACE}/Tools/bin/antlr\r
-DLG=${WORKSPACE}/Tools/bin/dlg\r
-OBJ_EXT=o\r
-OUT_OBJ = -o\r
-ANSI=-ansi\r
-AOTHER=\r
-CFLAGS= -O0 -g -I. -I$(SET) -I$(PCCTS_H) -DUSER_ZZSYN $(COTHER) $(ANSI) -DZZLEXBUFSIZE=32000\r
-#\r
-# SGI Users, use this CFLAGS\r
-#\r
-#CFLAGS= -O -I. -I$(SET) -I$(PCCTS_H) -DUSER_ZZSYN -woff 3262\r
-\r
-OBJ=antlr.o scan.o err.o bits.o build.o fset2.o fset.o gen.o \\r
-        globals.o hash.o lex.o main.o misc.o set.o pred.o egman.o mrhoist.o fcache.o $(OBJOTHER)\r
-\r
-antlr : $(OBJ) $(SRC)\r
-               $(CC) $(CFLAGS) -o antlr $(OBJ)\r
-               mv antlr ${WORKSPACE}/Tools/bin\r
-\r
-# what files does PCCTS generate (both ANTLR and DLG)\r
-PCCTS_GEN=antlr.c scan.c err.c tokens.h mode.h parser.dlg stdpccts.h remap.h\r
-\r
-SRC=antlr.c scan.c err.c bits.c build.c fset2.c fset.c gen.c globals.c \\r
-       hash.c lex.c main.c misc.c $(SET)/set.c pred.c egman.c mrhoist.c fcache.c\r
-\r
-#\r
-# Don't worry about the ambiguity messages coming from antlr\r
-# for making antlr.c etc...  [should be 10 of them, I think]\r
-#\r
-antlr.c stdpccts.h parser.dlg tokens.h err.c : antlr.g\r
-       $(ANTLR) -gh antlr.g $(AOTHER)\r
-\r
-antlr.o : antlr.c mode.h tokens.h\r
-\r
-scan.o : scan.c mode.h tokens.h\r
-\r
-scan.c mode.h: parser.dlg\r
-       $(DLG) -C2 parser.dlg scan.c\r
-\r
-set.o : $(SET)/set.c\r
-       $(CC) $(CFLAGS) -c -o set.o $(SET)/set.c\r
-\r
-\r
-#\r
-# ****** These next targets are common to UNIX and PC world ********\r
-#\r
-\r
-#clean up all the intermediate files\r
-clean:\r
-       rm -f *.$(OBJ_EXT) core\r
-\r
-#remove everything in clean plus the PCCTS files generated\r
-scrub:\r
-       rm -f $(PCCTS_GEN) *.$(OBJ_EXT) core\r