parsers/smalltalk/Make.proto
changeset 385 44a36ed4e484
child 390 17ba167b8ee1
equal deleted inserted replaced
384:a613ecf5d2a1 385:44a36ed4e484
       
     1 # $Header$
       
     2 #
       
     3 # DO NOT EDIT
       
     4 # automagically generated from the projectDefinition: stx_goodies_petitparser_parsers_smalltalk.
       
     5 #
       
     6 # Warning: once you modify this file, do not rerun
       
     7 # stmkmp or projectDefinition-build again - otherwise, your changes are lost.
       
     8 #
       
     9 # The Makefile as generated by this Make.proto supports the following targets:
       
    10 #    make         - compile all st-files to a classLib
       
    11 #    make clean   - clean all temp files
       
    12 #    make clobber - clean all
       
    13 #
       
    14 # This file contains definitions for Unix based platforms.
       
    15 # It shares common definitions with the win32-make in Make.spec.
       
    16 
       
    17 #
       
    18 # position (of this package) in directory hierarchy:
       
    19 # (must point to ST/X top directory, for tools and includes)
       
    20 TOP=../../../..
       
    21 INCLUDE_TOP=$(TOP)/..
       
    22 
       
    23 # subdirectories where targets are to be made:
       
    24 SUBDIRS=
       
    25 
       
    26 
       
    27 # subdirectories where Makefiles are to be made:
       
    28 # (only define if different from SUBDIRS)
       
    29 # ALLSUBDIRS=
       
    30 
       
    31 REQUIRED_SUPPORT_DIRS=
       
    32 
       
    33 # if your embedded C code requires any system includes,
       
    34 # add the path(es) here:,
       
    35 # ********** OPTIONAL: MODIFY the next lines ***
       
    36 # LOCALINCLUDES=-Ifoo -Ibar
       
    37 LOCALINCLUDES= -I$(INCLUDE_TOP)/stx/goodies/petitparser -I$(INCLUDE_TOP)/stx/goodies/refactoryBrowser/parser -I$(INCLUDE_TOP)/stx/libbasic -I$(INCLUDE_TOP)/stx/libcomp
       
    38 
       
    39 
       
    40 # if you need any additional defines for embedded C code,
       
    41 # add them here:,
       
    42 # ********** OPTIONAL: MODIFY the next lines ***
       
    43 # LOCALDEFINES=-Dfoo -Dbar -DDEBUG
       
    44 LOCALDEFINES=
       
    45 
       
    46 LIBNAME=libstx_goodies_petitparser_parsers_smalltalk
       
    47 STCLOCALOPT='-package=$(PACKAGE)' -I. $(LOCALINCLUDES) $(STCLOCALOPTIMIZATIONS) $(STCWARNINGS) $(LOCALDEFINES) -headerDir=.  -varPrefix=$(LIBNAME)
       
    48 
       
    49 
       
    50 # ********** OPTIONAL: MODIFY the next line ***
       
    51 # additional C-libraries that should be pre-linked with the class-objects
       
    52 LD_OBJ_LIBS=
       
    53 LOCAL_SHARED_LIBS=
       
    54 
       
    55 
       
    56 # ********** OPTIONAL: MODIFY the next line ***
       
    57 # additional C targets or libraries should be added below
       
    58 LOCAL_EXTRA_TARGETS=
       
    59 
       
    60 OBJS= $(COMMON_OBJS) $(UNIX_OBJS)
       
    61 
       
    62 
       
    63 
       
    64 all:: preMake classLibRule postMake
       
    65 
       
    66 pre_objs::  
       
    67 
       
    68 
       
    69 
       
    70 
       
    71 
       
    72 
       
    73 # Enforce recompilation of package definition class if Mercurial working
       
    74 # copy state changes. Together with --guessVersion it ensures that package
       
    75 # definition class always contains correct binary revision string.
       
    76 ifneq (**NOHG**, $(shell hg root 2> /dev/null || echo -n '**NOHG**'))
       
    77 stx_goodies_petitparser_parsers_smalltalk.$(O): $(shell hg root)/.hg/dirstate
       
    78 endif
       
    79 
       
    80 
       
    81 
       
    82 
       
    83 # run default testsuite for this package
       
    84 test: $(TOP)/goodies/builder/reports
       
    85 	$(MAKE) -C $(TOP)/goodies/builder/reports -f Makefile.init
       
    86 	$(TOP)/goodies/builder/reports/report-runner.sh -D . -r Builder::TestReport -p $(PACKAGE)
       
    87 
       
    88 
       
    89 
       
    90 # add more install actions here
       
    91 install::
       
    92 
       
    93 # add more install actions for aux-files (resources) here
       
    94 installAux::
       
    95 
       
    96 # add more preMake actions here
       
    97 preMake::
       
    98 
       
    99 # add more postMake actions here
       
   100 postMake:: cleanjunk
       
   101 
       
   102 # build all mandatory prerequisite packages (containing superclasses) for this package
       
   103 prereq:
       
   104 	cd ../../../../libbasic && $(MAKE) "CFLAGS_LOCAL=$(GLOBALDEFINES)"
       
   105 	cd ../../../refactoryBrowser/parser && $(MAKE) "CFLAGS_LOCAL=$(GLOBALDEFINES)"
       
   106 	cd ../../../../libbasic2 && $(MAKE) "CFLAGS_LOCAL=$(GLOBALDEFINES)"
       
   107 	cd ../../ && $(MAKE) "CFLAGS_LOCAL=$(GLOBALDEFINES)"
       
   108 
       
   109 
       
   110 
       
   111 # build all packages containing referenced classes for this package
       
   112 # they are nor needed to compile the package
       
   113 references:
       
   114 
       
   115 
       
   116 cleanjunk::
       
   117 	-rm -f *.s *.s2
       
   118 
       
   119 clean::
       
   120 	-rm -f *.o *.H
       
   121 
       
   122 clobber:: clean
       
   123 	-rm -f *.so *.dll
       
   124 
       
   125 
       
   126 # BEGINMAKEDEPEND --- do not remove this line; make depend needs it
       
   127 $(OUTDIR)PPSmalltalkGrammar.$(O) PPSmalltalkGrammar.$(H): PPSmalltalkGrammar.st $(INCLUDE_TOP)/stx/goodies/petitparser/PPCompositeParser.$(H) $(INCLUDE_TOP)/stx/goodies/petitparser/PPDelegateParser.$(H) $(INCLUDE_TOP)/stx/goodies/petitparser/PPParser.$(H) $(INCLUDE_TOP)/stx/libbasic/Object.$(H) $(STCHDR)
       
   128 $(OUTDIR)PPSmalltalkToken.$(O) PPSmalltalkToken.$(H): PPSmalltalkToken.st $(INCLUDE_TOP)/stx/goodies/petitparser/PPToken.$(H) $(INCLUDE_TOP)/stx/libbasic/Object.$(H) $(STCHDR)
       
   129 $(OUTDIR)PPSmalltalkTokenParser.$(O) PPSmalltalkTokenParser.$(H): PPSmalltalkTokenParser.st $(INCLUDE_TOP)/stx/goodies/petitparser/PPDelegateParser.$(H) $(INCLUDE_TOP)/stx/goodies/petitparser/PPFlattenParser.$(H) $(INCLUDE_TOP)/stx/goodies/petitparser/PPParser.$(H) $(INCLUDE_TOP)/stx/goodies/petitparser/PPTokenParser.$(H) $(INCLUDE_TOP)/stx/libbasic/Object.$(H) $(STCHDR)
       
   130 $(OUTDIR)stx_goodies_petitparser_parsers_smalltalk.$(O) stx_goodies_petitparser_parsers_smalltalk.$(H): stx_goodies_petitparser_parsers_smalltalk.st $(INCLUDE_TOP)/stx/libbasic/LibraryDefinition.$(H) $(INCLUDE_TOP)/stx/libbasic/Object.$(H) $(INCLUDE_TOP)/stx/libbasic/ProjectDefinition.$(H) $(STCHDR)
       
   131 $(OUTDIR)PPSmalltalkParser.$(O) PPSmalltalkParser.$(H): PPSmalltalkParser.st $(INCLUDE_TOP)/stx/goodies/petitparser/PPCompositeParser.$(H) $(INCLUDE_TOP)/stx/goodies/petitparser/PPDelegateParser.$(H) $(INCLUDE_TOP)/stx/goodies/petitparser/PPParser.$(H) $(INCLUDE_TOP)/stx/goodies/petitparser/parsers/smalltalk/PPSmalltalkGrammar.$(H) $(INCLUDE_TOP)/stx/libbasic/Object.$(H) $(STCHDR)
       
   132 $(OUTDIR)extensions.$(O): extensions.st $(INCLUDE_TOP)/stx/goodies/petitparser/PPParser.$(H) $(INCLUDE_TOP)/stx/goodies/refactoryBrowser/parser/RBProgramNode.$(H) $(INCLUDE_TOP)/stx/goodies/refactoryBrowser/parser/RBToken.$(H) $(INCLUDE_TOP)/stx/goodies/refactoryBrowser/parser/RBValueToken.$(H) $(INCLUDE_TOP)/stx/libbasic/Object.$(H) $(STCHDR)
       
   133 
       
   134 # ENDMAKEDEPEND --- do not remove this line
       
   135