compiler/tests/extras/bc.mak
changeset 452 9f4558b3be66
child 454 a9cd5ea7cc36
child 459 4751c407bb40
equal deleted inserted replaced
438:20598d7ce9fa 452:9f4558b3be66
       
     1 # $Header$
       
     2 #
       
     3 # DO NOT EDIT
       
     4 # automagically generated from the projectDefinition: stx_goodies_petitparser_compiler_tests_extras.
       
     5 #
       
     6 # Warning: once you modify this file, do not rerun
       
     7 # stmkmp or projectDefinition-build again - otherwise, your changes are lost.
       
     8 #
       
     9 # Notice, that the name bc.mak is historical (from times, when only borland c was supported).
       
    10 # This file contains make rules for the win32 platform using either borland-bcc or visual-c.
       
    11 # It shares common definitions with the unix-make in Make.spec.
       
    12 # The bc.mak supports the following targets:
       
    13 #    bmake         - compile all st-files to a classLib (dll)
       
    14 #    bmake clean   - clean all temp files
       
    15 #    bmake clobber - clean all
       
    16 #
       
    17 # Historic Note:
       
    18 #  this used to contain only rules to make with borland
       
    19 #    (called via bmake, by "make.exe -f bc.mak")
       
    20 #  this has changed; it is now also possible to build using microsoft visual c
       
    21 #    (called via vcmake, by "make.exe -f bc.mak -DUSEVC")
       
    22 #
       
    23 TOP=..\..\..\..\..
       
    24 INCLUDE_TOP=$(TOP)\..
       
    25 
       
    26 
       
    27 
       
    28 !INCLUDE $(TOP)\rules\stdHeader_bc
       
    29 
       
    30 !INCLUDE Make.spec
       
    31 
       
    32 LIBNAME=libstx_goodies_petitparser_compiler_tests_extras
       
    33 MODULE_PATH=goodies\petitparser\compiler\tests\extras
       
    34 RESFILES=extras.$(RES)
       
    35 
       
    36 
       
    37 
       
    38 LOCALINCLUDES= -I$(INCLUDE_TOP)\stx\goodies\petitparser -I$(INCLUDE_TOP)\stx\goodies\petitparser\compiler -I$(INCLUDE_TOP)\stx\goodies\petitparser\parsers\java -I$(INCLUDE_TOP)\stx\goodies\petitparser\parsers\smalltalk -I$(INCLUDE_TOP)\stx\goodies\petitparser\tests -I$(INCLUDE_TOP)\stx\goodies\sunit -I$(INCLUDE_TOP)\stx\libbasic
       
    39 LOCALDEFINES=
       
    40 
       
    41 STCLOCALOPT=-package=$(PACKAGE) -I. $(LOCALINCLUDES) -headerDir=. $(STCLOCALOPTIMIZATIONS) $(STCWARNINGS) $(LOCALDEFINES)  -varPrefix=$(LIBNAME)
       
    42 LOCALLIBS=
       
    43 
       
    44 OBJS= $(COMMON_OBJS) $(WIN32_OBJS)
       
    45 
       
    46 ALL::  classLibRule
       
    47 
       
    48 classLibRule: $(OUTDIR) $(OUTDIR)$(LIBNAME).dll
       
    49 
       
    50 !INCLUDE $(TOP)\rules\stdRules_bc
       
    51 
       
    52 # build all mandatory prerequisite packages (containing superclasses) for this package
       
    53 prereq:
       
    54 	pushd ..\..\..\..\..\libbasic & $(MAKE_BAT) "CFLAGS_LOCAL=$(GLOBALDEFINES) "
       
    55 	pushd ..\..\..\..\..\libbasic2 & $(MAKE_BAT) "CFLAGS_LOCAL=$(GLOBALDEFINES) "
       
    56 	pushd ..\..\..\..\..\libbasic3 & $(MAKE_BAT) "CFLAGS_LOCAL=$(GLOBALDEFINES) "
       
    57 	pushd ..\..\..\..\..\libview & $(MAKE_BAT) "CFLAGS_LOCAL=$(GLOBALDEFINES) "
       
    58 	pushd ..\..\.. & $(MAKE_BAT) "CFLAGS_LOCAL=$(GLOBALDEFINES) "
       
    59 	pushd ..\..\..\..\..\libview2 & $(MAKE_BAT) "CFLAGS_LOCAL=$(GLOBALDEFINES) "
       
    60 	pushd ..\..\..\..\sunit & $(MAKE_BAT) "CFLAGS_LOCAL=$(GLOBALDEFINES) "
       
    61 	pushd ..\..\..\tests & $(MAKE_BAT) "CFLAGS_LOCAL=$(GLOBALDEFINES) "
       
    62 	pushd ..\..\..\parsers\java & $(MAKE_BAT) "CFLAGS_LOCAL=$(GLOBALDEFINES) "
       
    63 
       
    64 
       
    65 
       
    66 
       
    67 
       
    68 
       
    69 
       
    70 test: $(TOP)\goodies\builder\reports\NUL
       
    71 	pushd $(TOP)\goodies\builder\reports & $(MAKE_BAT)
       
    72 	$(TOP)\goodies\builder\reports\report-runner.bat -D . -r Builder::TestReport -p $(PACKAGE)
       
    73         
       
    74 clean::
       
    75 	del *.$(CSUFFIX)
       
    76 
       
    77 
       
    78 # BEGINMAKEDEPEND --- do not remove this line; make depend needs it
       
    79 $(OUTDIR)stx_goodies_petitparser_compiler_tests_extras.$(O) stx_goodies_petitparser_compiler_tests_extras.$(H): stx_goodies_petitparser_compiler_tests_extras.st $(INCLUDE_TOP)\stx\libbasic\LibraryDefinition.$(H) $(INCLUDE_TOP)\stx\libbasic\Object.$(H) $(INCLUDE_TOP)\stx\libbasic\ProjectDefinition.$(H) $(STCHDR)
       
    80 
       
    81 # ENDMAKEDEPEND --- do not remove this line
       
    82 
       
    83 # **Must be at end**
       
    84 
       
    85 # Enforce recompilation of package definition class if Mercurial working
       
    86 # copy state changes. Together with --guessVersion it ensures that package
       
    87 # definition class always contains correct binary revision string.
       
    88 !IFDEF HGROOT
       
    89 $(OUTDIR)stx_goodies_petitparser_compiler_tests_extras.$(O): $(HGROOT)\.hg\dirstate
       
    90 !ENDIF