X-Git-Url: https://feistymeow.org/gitweb/?a=blobdiff_plain;f=examples%2Fcpp_grammar_code%2Fmakefile.macros;fp=examples%2Fcpp_grammar_code%2Fmakefile.macros;h=0000000000000000000000000000000000000000;hb=8f403891425dfe131948be97cae4edf21f3f7869;hp=b14772ec40811c2ac75462b84491ebedd1a6168e;hpb=a4d12589f1cd01826814842cde0b3eac95890bc9;p=feisty_meow.git diff --git a/examples/cpp_grammar_code/makefile.macros b/examples/cpp_grammar_code/makefile.macros deleted file mode 100644 index b14772ec..00000000 --- a/examples/cpp_grammar_code/makefile.macros +++ /dev/null @@ -1,83 +0,0 @@ -# -# Title: Common make macros for the Cxx Grammar tester. -# -# Author: E.D.Willink -# -# Description: -# -# These macros are shared by -# makefile for Unix make -# makefile.gmake for NT (g)make -#END - -L_FILES = \ - CxxLexer.l - -Y_FILES = \ - CxxParser.y - -LEXER_FILES = \ - CxxLexing.cxx \ - CxxLexing.hxx - -PARSER_FILES = \ - CxxParsing.cxx \ - CxxParsing.hxx - -TOKEN_FILES = \ - CxxToken.cxx \ - CxxToken.hxx - -CLASS_SOURCES = \ - $(LEXER_FILES) \ - $(PARSER_FILES) \ - $(TOKEN_FILES) - -# -# list of all compilation units -# -COMPOSITE_SOURCES = \ - CxxLexer.cpp \ - CxxParser.cpp \ - CxxToken.cpp - -Y_CXX_FILES = $(Y_FILES:%.y=$(SRCDIR)/%.cxx) -GENERATED_INCLUDES = \ - $(L_FILES:%.l=$(SRCDIR)/%.cxx) \ - $(Y_FILES:%.y=$(SRCDIR)/%.cxx) \ - $(Y_FILES:%.y=$(SRCDIR)/%.hxx) - -MAKE_FILES = \ - makefile \ - makefile.gmake \ - makefile.macros \ - makefile.unix - -# list of all other files for listing purposes -OTHER_SOURCES = \ - $(MAKE_FILES) \ - $(CLASS_SOURCES) \ - $(L_FILES) \ - $(Y_FILES) - -CPP_SOURCES = $(COMPOSITE_SOURCES) - -INCLUDES = $(GENERATED_INCLUDES) - -SOURCES = \ - $(CPP_SOURCES) \ - $(CLASS_SOURCES) \ - $(L_FILES) \ - $(Y_FILES) \ - $(MAKE_FILES) - -DOCUMENTATION_FILES = \ - index.html \ - README - -# List of all primary files (to be copied to a secondary environment) -ALL_FILES = \ - $(SOURCES) \ - $(DOCUMENTATION_FILES) \ - grammar.dsp \ - grammar.dsw