analyzer/Make.proto
author Jan Vrany <jan.vrany@fit.cvut.cz>
Fri, 01 May 2015 13:44:43 +0200
changeset 441 6f0eb79b3dda
parent 386 a409905f7f2d
permissions -rw-r--r--
Makefiles updated so compiler and all it's dependencies are build automatically
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
376
a2656b27cace Added monticelloName to package definition to ease export to .mcz
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 304
diff changeset
     1
# $Header$
215
3c9df5cb54c7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
     2
#
3c9df5cb54c7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
     3
# DO NOT EDIT
3c9df5cb54c7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
     4
# automagically generated from the projectDefinition: stx_goodies_petitparser_analyzer.
3c9df5cb54c7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
     5
#
3c9df5cb54c7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
     6
# Warning: once you modify this file, do not rerun
3c9df5cb54c7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
     7
# stmkmp or projectDefinition-build again - otherwise, your changes are lost.
3c9df5cb54c7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
     8
#
3c9df5cb54c7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
     9
# The Makefile as generated by this Make.proto supports the following targets:
3c9df5cb54c7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    10
#    make         - compile all st-files to a classLib
3c9df5cb54c7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    11
#    make clean   - clean all temp files
3c9df5cb54c7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    12
#    make clobber - clean all
3c9df5cb54c7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    13
#
3c9df5cb54c7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    14
# This file contains definitions for Unix based platforms.
3c9df5cb54c7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    15
# It shares common definitions with the win32-make in Make.spec.
3c9df5cb54c7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    16
3c9df5cb54c7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    17
#
3c9df5cb54c7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    18
# position (of this package) in directory hierarchy:
3c9df5cb54c7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    19
# (must point to ST/X top directory, for tools and includes)
3c9df5cb54c7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    20
TOP=../../..
3c9df5cb54c7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    21
INCLUDE_TOP=$(TOP)/..
3c9df5cb54c7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    22
3c9df5cb54c7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    23
# subdirectories where targets are to be made:
3c9df5cb54c7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    24
SUBDIRS=
3c9df5cb54c7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    25
3c9df5cb54c7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    26
3c9df5cb54c7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    27
# subdirectories where Makefiles are to be made:
3c9df5cb54c7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    28
# (only define if different from SUBDIRS)
3c9df5cb54c7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    29
# ALLSUBDIRS=
3c9df5cb54c7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    30
3c9df5cb54c7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    31
REQUIRED_SUPPORT_DIRS=
3c9df5cb54c7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    32
3c9df5cb54c7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    33
# if your embedded C code requires any system includes,
3c9df5cb54c7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    34
# add the path(es) here:,
3c9df5cb54c7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    35
# ********** OPTIONAL: MODIFY the next lines ***
3c9df5cb54c7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    36
# LOCALINCLUDES=-Ifoo -Ibar
386
a409905f7f2d Smalltalk parser almost fixed (except few pragma-related tests).
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 382
diff changeset
    37
LOCALINCLUDES= -I$(INCLUDE_TOP)/stx/goodies/petitparser -I$(INCLUDE_TOP)/stx/libbasic
215
3c9df5cb54c7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    38
3c9df5cb54c7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    39
3c9df5cb54c7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    40
# if you need any additional defines for embedded C code,
3c9df5cb54c7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    41
# add them here:,
3c9df5cb54c7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    42
# ********** OPTIONAL: MODIFY the next lines ***
3c9df5cb54c7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    43
# LOCALDEFINES=-Dfoo -Dbar -DDEBUG
3c9df5cb54c7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    44
LOCALDEFINES=
3c9df5cb54c7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    45
3c9df5cb54c7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    46
LIBNAME=libstx_goodies_petitparser_analyzer
3c9df5cb54c7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    47
STCLOCALOPT='-package=$(PACKAGE)' -I. $(LOCALINCLUDES) $(STCLOCALOPTIMIZATIONS) $(STCWARNINGS) $(LOCALDEFINES) -headerDir=.  -varPrefix=$(LIBNAME)
3c9df5cb54c7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    48
3c9df5cb54c7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    49
3c9df5cb54c7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    50
# ********** OPTIONAL: MODIFY the next line ***
3c9df5cb54c7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    51
# additional C-libraries that should be pre-linked with the class-objects
3c9df5cb54c7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    52
LD_OBJ_LIBS=
3c9df5cb54c7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    53
LOCAL_SHARED_LIBS=
3c9df5cb54c7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    54
3c9df5cb54c7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    55
3c9df5cb54c7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    56
# ********** OPTIONAL: MODIFY the next line ***
3c9df5cb54c7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    57
# additional C targets or libraries should be added below
3c9df5cb54c7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    58
LOCAL_EXTRA_TARGETS=
3c9df5cb54c7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    59
3c9df5cb54c7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    60
OBJS= $(COMMON_OBJS) $(UNIX_OBJS)
3c9df5cb54c7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    61
3c9df5cb54c7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    62
3c9df5cb54c7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    63
3c9df5cb54c7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    64
all:: preMake classLibRule postMake
3c9df5cb54c7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    65
3c9df5cb54c7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    66
pre_objs::  
3c9df5cb54c7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    67
3c9df5cb54c7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    68
3c9df5cb54c7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    69
3c9df5cb54c7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    70
3c9df5cb54c7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    71
3c9df5cb54c7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    72
376
a2656b27cace Added monticelloName to package definition to ease export to .mcz
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 304
diff changeset
    73
# Enforce recompilation of package definition class if Mercurial working
a2656b27cace Added monticelloName to package definition to ease export to .mcz
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 304
diff changeset
    74
# copy state changes. Together with --guessVersion it ensures that package
a2656b27cace Added monticelloName to package definition to ease export to .mcz
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 304
diff changeset
    75
# definition class always contains correct binary revision string.
a2656b27cace Added monticelloName to package definition to ease export to .mcz
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 304
diff changeset
    76
ifneq (**NOHG**, $(shell hg root 2> /dev/null || echo -n '**NOHG**'))
a2656b27cace Added monticelloName to package definition to ease export to .mcz
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 304
diff changeset
    77
stx_goodies_petitparser_analyzer.$(O): $(shell hg root)/.hg/dirstate
a2656b27cace Added monticelloName to package definition to ease export to .mcz
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 304
diff changeset
    78
endif
a2656b27cace Added monticelloName to package definition to ease export to .mcz
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 304
diff changeset
    79
215
3c9df5cb54c7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    80
3c9df5cb54c7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    81
3c9df5cb54c7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    82
3c9df5cb54c7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    83
# run default testsuite for this package
3c9df5cb54c7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    84
test: $(TOP)/goodies/builder/reports
376
a2656b27cace Added monticelloName to package definition to ease export to .mcz
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 304
diff changeset
    85
	$(MAKE) -C $(TOP)/goodies/builder/reports -f Makefile.init
215
3c9df5cb54c7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    86
	$(TOP)/goodies/builder/reports/report-runner.sh -D . -r Builder::TestReport -p $(PACKAGE)
3c9df5cb54c7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    87
3c9df5cb54c7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    88
3c9df5cb54c7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    89
3c9df5cb54c7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    90
# add more install actions here
3c9df5cb54c7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    91
install::
3c9df5cb54c7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    92
3c9df5cb54c7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    93
# add more install actions for aux-files (resources) here
3c9df5cb54c7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    94
installAux::
3c9df5cb54c7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    95
3c9df5cb54c7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    96
# add more preMake actions here
3c9df5cb54c7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    97
preMake::
3c9df5cb54c7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    98
3c9df5cb54c7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    99
# add more postMake actions here
3c9df5cb54c7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   100
postMake:: cleanjunk
3c9df5cb54c7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   101
3c9df5cb54c7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   102
# build all mandatory prerequisite packages (containing superclasses) for this package
3c9df5cb54c7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   103
prereq:
3c9df5cb54c7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   104
	cd ../../../libbasic && $(MAKE) "CFLAGS_LOCAL=$(GLOBALDEFINES)"
3c9df5cb54c7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   105
	cd ../../../libbasic2 && $(MAKE) "CFLAGS_LOCAL=$(GLOBALDEFINES)"
3c9df5cb54c7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   106
	cd ../ && $(MAKE) "CFLAGS_LOCAL=$(GLOBALDEFINES)"
3c9df5cb54c7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   107
3c9df5cb54c7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   108
3c9df5cb54c7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   109
3c9df5cb54c7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   110
# build all packages containing referenced classes for this package
441
6f0eb79b3dda Makefiles updated so compiler and all it's dependencies are build automatically
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 386
diff changeset
   111
# they are not needed to compile the package (but later, to load it)
215
3c9df5cb54c7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   112
references:
3c9df5cb54c7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   113
3c9df5cb54c7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   114
3c9df5cb54c7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   115
cleanjunk::
3c9df5cb54c7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   116
	-rm -f *.s *.s2
3c9df5cb54c7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   117
3c9df5cb54c7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   118
clean::
3c9df5cb54c7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   119
	-rm -f *.o *.H
3c9df5cb54c7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   120
3c9df5cb54c7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   121
clobber:: clean
3c9df5cb54c7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   122
	-rm -f *.so *.dll
3c9df5cb54c7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   123
3c9df5cb54c7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   124
3c9df5cb54c7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   125
# BEGINMAKEDEPEND --- do not remove this line; make depend needs it
3c9df5cb54c7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   126
$(OUTDIR)PPPattern.$(O) PPPattern.$(H): PPPattern.st $(INCLUDE_TOP)/stx/goodies/petitparser/PPParser.$(H) $(INCLUDE_TOP)/stx/libbasic/Object.$(H) $(STCHDR)
3c9df5cb54c7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   127
$(OUTDIR)PPProcessor.$(O) PPProcessor.$(H): PPProcessor.st $(INCLUDE_TOP)/stx/libbasic/Object.$(H) $(STCHDR)
3c9df5cb54c7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   128
$(OUTDIR)PPRule.$(O) PPRule.$(H): PPRule.st $(INCLUDE_TOP)/stx/libbasic/Object.$(H) $(STCHDR)
3c9df5cb54c7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   129
$(OUTDIR)PPSentinel.$(O) PPSentinel.$(H): PPSentinel.st $(INCLUDE_TOP)/stx/goodies/petitparser/PPEpsilonParser.$(H) $(INCLUDE_TOP)/stx/goodies/petitparser/PPParser.$(H) $(INCLUDE_TOP)/stx/libbasic/Object.$(H) $(STCHDR)
3c9df5cb54c7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   130
$(OUTDIR)stx_goodies_petitparser_analyzer.$(O) stx_goodies_petitparser_analyzer.$(H): stx_goodies_petitparser_analyzer.st $(INCLUDE_TOP)/stx/libbasic/LibraryDefinition.$(H) $(INCLUDE_TOP)/stx/libbasic/Object.$(H) $(INCLUDE_TOP)/stx/libbasic/ProjectDefinition.$(H) $(STCHDR)
3c9df5cb54c7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   131
$(OUTDIR)PPListPattern.$(O) PPListPattern.$(H): PPListPattern.st $(INCLUDE_TOP)/stx/goodies/petitparser/PPParser.$(H) $(INCLUDE_TOP)/stx/goodies/petitparser/analyzer/PPPattern.$(H) $(INCLUDE_TOP)/stx/libbasic/Object.$(H) $(STCHDR)
3c9df5cb54c7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   132
$(OUTDIR)PPReplaceRule.$(O) PPReplaceRule.$(H): PPReplaceRule.st $(INCLUDE_TOP)/stx/goodies/petitparser/analyzer/PPRule.$(H) $(INCLUDE_TOP)/stx/libbasic/Object.$(H) $(STCHDR)
3c9df5cb54c7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   133
$(OUTDIR)PPRewriter.$(O) PPRewriter.$(H): PPRewriter.st $(INCLUDE_TOP)/stx/goodies/petitparser/analyzer/PPProcessor.$(H) $(INCLUDE_TOP)/stx/libbasic/Object.$(H) $(STCHDR)
3c9df5cb54c7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   134
$(OUTDIR)PPSearchRule.$(O) PPSearchRule.$(H): PPSearchRule.st $(INCLUDE_TOP)/stx/goodies/petitparser/analyzer/PPRule.$(H) $(INCLUDE_TOP)/stx/libbasic/Object.$(H) $(STCHDR)
3c9df5cb54c7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   135
$(OUTDIR)PPSearcher.$(O) PPSearcher.$(H): PPSearcher.st $(INCLUDE_TOP)/stx/goodies/petitparser/analyzer/PPProcessor.$(H) $(INCLUDE_TOP)/stx/libbasic/Object.$(H) $(STCHDR)
3c9df5cb54c7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   136
$(OUTDIR)PPBlockReplaceRule.$(O) PPBlockReplaceRule.$(H): PPBlockReplaceRule.st $(INCLUDE_TOP)/stx/goodies/petitparser/analyzer/PPReplaceRule.$(H) $(INCLUDE_TOP)/stx/goodies/petitparser/analyzer/PPRule.$(H) $(INCLUDE_TOP)/stx/libbasic/Object.$(H) $(STCHDR)
3c9df5cb54c7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   137
$(OUTDIR)PPParserReplaceRule.$(O) PPParserReplaceRule.$(H): PPParserReplaceRule.st $(INCLUDE_TOP)/stx/goodies/petitparser/analyzer/PPReplaceRule.$(H) $(INCLUDE_TOP)/stx/goodies/petitparser/analyzer/PPRule.$(H) $(INCLUDE_TOP)/stx/libbasic/Object.$(H) $(STCHDR)
386
a409905f7f2d Smalltalk parser almost fixed (except few pragma-related tests).
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 382
diff changeset
   138
$(OUTDIR)extensions.$(O): extensions.st $(INCLUDE_TOP)/stx/goodies/petitparser/PPActionParser.$(H) $(INCLUDE_TOP)/stx/goodies/petitparser/PPDelegateParser.$(H) $(INCLUDE_TOP)/stx/goodies/petitparser/PPEpsilonParser.$(H) $(INCLUDE_TOP)/stx/goodies/petitparser/PPFailingParser.$(H) $(INCLUDE_TOP)/stx/goodies/petitparser/PPFlattenParser.$(H) $(INCLUDE_TOP)/stx/goodies/petitparser/PPLimitedRepeatingParser.$(H) $(INCLUDE_TOP)/stx/goodies/petitparser/PPListParser.$(H) $(INCLUDE_TOP)/stx/goodies/petitparser/PPLiteralParser.$(H) $(INCLUDE_TOP)/stx/goodies/petitparser/PPNotParser.$(H) $(INCLUDE_TOP)/stx/goodies/petitparser/PPOptionalParser.$(H) $(INCLUDE_TOP)/stx/goodies/petitparser/PPParser.$(H) $(INCLUDE_TOP)/stx/goodies/petitparser/PPPluggableParser.$(H) $(INCLUDE_TOP)/stx/goodies/petitparser/PPPredicateParser.$(H) $(INCLUDE_TOP)/stx/goodies/petitparser/PPPredicateSequenceParser.$(H) $(INCLUDE_TOP)/stx/goodies/petitparser/PPRepeatingParser.$(H) $(INCLUDE_TOP)/stx/goodies/petitparser/PPSequenceParser.$(H) $(INCLUDE_TOP)/stx/goodies/petitparser/PPTokenParser.$(H) $(INCLUDE_TOP)/stx/libbasic/Object.$(H) $(STCHDR)
215
3c9df5cb54c7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   139
3c9df5cb54c7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   140
# ENDMAKEDEPEND --- do not remove this line
3c9df5cb54c7 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   141