X-Git-Url: https://feistymeow.org/gitweb/?a=blobdiff_plain;f=examples%2Fcpp_grammar_code%2Fmakefile;fp=examples%2Fcpp_grammar_code%2Fmakefile;h=0000000000000000000000000000000000000000;hb=8f403891425dfe131948be97cae4edf21f3f7869;hp=e2b3d56ebb6ec9178ec4a4211742d12b63382134;hpb=a4d12589f1cd01826814842cde0b3eac95890bc9;p=feisty_meow.git diff --git a/examples/cpp_grammar_code/makefile b/examples/cpp_grammar_code/makefile deleted file mode 100644 index e2b3d56e..00000000 --- a/examples/cpp_grammar_code/makefile +++ /dev/null @@ -1,55 +0,0 @@ -# -# Title: Make file for Cxx Grammar tester. -# -# Author: E.D.Willink -# -# SCCS: %W% %G% -# -# Description: -# This makefile wrapper redirects all activity to makefile.unix after first ensuring that -# any .INIT provided by ../import.make has executed to load required source files. -# -# Targets: -# executable, normal -# builds $(ARCH)o/grammar -# sun -# builds $(ARCH)o/grammar using sun compiler, yacc and lex -# gnu -# builds $(ARCH)o/grammar using gnu compiler, bison and flex -# clean -# eliminates $(ARCH)o* intermediates -# realclean -# eliminates $(ARCH)o* intermediates and executables -# source_kit -# generates the distribution kits -# -# Switch settings are appropriate for Sun C++ 4.2. -# Commented settings indicate what might be appropriate for gcc once it supports templates plausibly. -# -# Latest Modification: -# EDW Date: 14-Jun-2001 Original -#END - -.SUFFIXES: - -SRCDIR = sources -ARCH = sun4 -OBJ_DIR = $(ARCH)o -OBJ_DIR_PI = $(ARCH)o_pi -OBJ_DIR_G = $(ARCH)o_g -OBJ_DIR_PI_G = $(ARCH)o_pi_g - -default : executable - -#../import.make is empty by default, but may be provided to copy sources from somewhere. -../import.make : - echo > $@ -IMPORT_PATH = grammar -include ../import.make - -clean executable gnu realclean source_kit sun %.tar \ -$(SRCDIR)/% $(OBJ_DIR)/% $(OBJ_DIR_PI)/% $(OBJ_DIR_G)/% $(OBJ_DIR_PI_G)/% \ - : makefile makefile.unix .FORCE - $(MAKE) -f makefile.unix $(MFLAGS) $(MAKEFLAGS) $@ - -.FORCE: \ No newline at end of file