tests/bc.mak
author Jan Vrany <jan.vrany@fit.cvut.cz>
Mon, 24 Nov 2014 00:09:23 +0000
changeset 421 7e08b31e0dae
parent 404 8da796db7f95
child 427 a7f5e6de19d2
permissions -rw-r--r--
Merged JK's version from Monticello Name: PetitParser-JanKurs.260 Author: JanKurs Time: 17-11-2014, 12:09:05.490 PM UUID: 07411cef-ef69-40db-9d93-d4018a9b34ef Name: PetitTests-JanKurs.65 Author: JanKurs Time: 17-11-2014, 12:09:04.530 PM UUID: f98d613f-f4ce-4e0e-a7e9-310ee7c7e7a6 Name: PetitSmalltalk-JanKurs.78 Author: JanKurs Time: 14-11-2014, 05:05:07.765 PM UUID: 3d68330d-44d5-46c3-9705-97f627b3edbc Name: PetitCompiler-JanKurs.71 Author: JanKurs Time: 18-11-2014, 09:48:35.425 AM UUID: 06352c33-3c76-4382-8536-0cc48e225117 Name: PetitCompiler-Tests-JanKurs.21 Author: JanKurs Time: 17-11-2014, 05:51:53.134 PM UUID: 8d6c0799-14e7-4871-8d91-8b0f9886db83 Name: PetitCompiler-Benchmarks-JanKurs.2 Author: JanKurs Time: 17-11-2014, 05:51:07.887 PM UUID: d5e3a980-7871-487a-a232-e3ca93fc2483
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: 321
diff changeset
     1
# $Header$
248
4e79809dd271 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
     2
#
4e79809dd271 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
     3
# DO NOT EDIT
4e79809dd271 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
     4
# automagically generated from the projectDefinition: stx_goodies_petitparser_tests.
4e79809dd271 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
     5
#
4e79809dd271 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
     6
# Warning: once you modify this file, do not rerun
4e79809dd271 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
     7
# stmkmp or projectDefinition-build again - otherwise, your changes are lost.
4e79809dd271 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
     8
#
4e79809dd271 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
     9
# Notice, that the name bc.mak is historical (from times, when only borland c was supported).
4e79809dd271 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    10
# This file contains make rules for the win32 platform using either borland-bcc or visual-c.
4e79809dd271 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    11
# It shares common definitions with the unix-make in Make.spec.
4e79809dd271 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    12
# The bc.mak supports the following targets:
4e79809dd271 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    13
#    bmake         - compile all st-files to a classLib (dll)
4e79809dd271 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    14
#    bmake clean   - clean all temp files
4e79809dd271 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    15
#    bmake clobber - clean all
4e79809dd271 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    16
#
4e79809dd271 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    17
# Historic Note:
4e79809dd271 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    18
#  this used to contain only rules to make with borland
4e79809dd271 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    19
#    (called via bmake, by "make.exe -f bc.mak")
4e79809dd271 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    20
#  this has changed; it is now also possible to build using microsoft visual c
4e79809dd271 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    21
#    (called via vcmake, by "make.exe -f bc.mak -DUSEVC")
4e79809dd271 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    22
#
4e79809dd271 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    23
TOP=..\..\..
4e79809dd271 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    24
INCLUDE_TOP=$(TOP)\..
4e79809dd271 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    25
4e79809dd271 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    26
4e79809dd271 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    27
4e79809dd271 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    28
!INCLUDE $(TOP)\rules\stdHeader_bc
4e79809dd271 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    29
4e79809dd271 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    30
!INCLUDE Make.spec
4e79809dd271 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    31
4e79809dd271 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    32
LIBNAME=libstx_goodies_petitparser_tests
421
7e08b31e0dae Merged JK's version from Monticello
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 404
diff changeset
    33
MODULE_PATH=goodies\petitparser\tests
248
4e79809dd271 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    34
RESFILES=tests.$(RES)
4e79809dd271 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    35
4e79809dd271 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    36
4e79809dd271 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    37
376
a2656b27cace Added monticelloName to package definition to ease export to .mcz
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 321
diff changeset
    38
LOCALINCLUDES= -I$(INCLUDE_TOP)\stx\goodies\petitparser -I$(INCLUDE_TOP)\stx\goodies\sunit -I$(INCLUDE_TOP)\stx\libbasic
248
4e79809dd271 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    39
LOCALDEFINES=
4e79809dd271 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    40
4e79809dd271 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    41
STCLOCALOPT=-package=$(PACKAGE) -I. $(LOCALINCLUDES) -headerDir=. $(STCLOCALOPTIMIZATIONS) $(STCWARNINGS) $(LOCALDEFINES)  -varPrefix=$(LIBNAME)
4e79809dd271 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    42
LOCALLIBS=
4e79809dd271 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    43
4e79809dd271 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    44
OBJS= $(COMMON_OBJS) $(WIN32_OBJS)
4e79809dd271 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    45
4e79809dd271 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    46
ALL::  classLibRule
4e79809dd271 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    47
4e79809dd271 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    48
classLibRule: $(OUTDIR) $(OUTDIR)$(LIBNAME).dll
4e79809dd271 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    49
4e79809dd271 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    50
!INCLUDE $(TOP)\rules\stdRules_bc
4e79809dd271 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    51
4e79809dd271 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    52
# build all mandatory prerequisite packages (containing superclasses) for this package
4e79809dd271 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    53
prereq:
4e79809dd271 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    54
	pushd ..\..\..\libbasic & $(MAKE_BAT) "CFLAGS_LOCAL=$(GLOBALDEFINES) "
4e79809dd271 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    55
	pushd ..\..\..\libbasic2 & $(MAKE_BAT) "CFLAGS_LOCAL=$(GLOBALDEFINES) "
376
a2656b27cace Added monticelloName to package definition to ease export to .mcz
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 321
diff changeset
    56
	pushd ..\..\..\libbasic3 & $(MAKE_BAT) "CFLAGS_LOCAL=$(GLOBALDEFINES) "
248
4e79809dd271 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    57
	pushd ..\..\..\libview & $(MAKE_BAT) "CFLAGS_LOCAL=$(GLOBALDEFINES) "
377
6112a403a52d Updated to latest version from Moose repository.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 376
diff changeset
    58
	pushd .. & $(MAKE_BAT) "CFLAGS_LOCAL=$(GLOBALDEFINES) "
248
4e79809dd271 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    59
	pushd ..\..\..\libview2 & $(MAKE_BAT) "CFLAGS_LOCAL=$(GLOBALDEFINES) "
4e79809dd271 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    60
	pushd ..\..\sunit & $(MAKE_BAT) "CFLAGS_LOCAL=$(GLOBALDEFINES) "
4e79809dd271 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    61
4e79809dd271 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    62
4e79809dd271 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    63
4e79809dd271 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    64
4e79809dd271 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    65
4e79809dd271 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    66
4e79809dd271 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    67
4e79809dd271 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    68
test: $(TOP)\goodies\builder\reports\NUL
4e79809dd271 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    69
	pushd $(TOP)\goodies\builder\reports & $(MAKE_BAT)
4e79809dd271 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    70
	$(TOP)\goodies\builder\reports\report-runner.bat -D . -r Builder::TestReport -p $(PACKAGE)
4e79809dd271 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    71
        
4e79809dd271 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    72
clean::
4e79809dd271 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    73
	del *.$(CSUFFIX)
4e79809dd271 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    74
4e79809dd271 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    75
4e79809dd271 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    76
# BEGINMAKEDEPEND --- do not remove this line; make depend needs it
403
7063d523b064 Removed autoload attribut for tests.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 377
diff changeset
    77
$(OUTDIR)PPAbstractParserTest.$(O) PPAbstractParserTest.$(H): PPAbstractParserTest.st $(INCLUDE_TOP)\stx\goodies\sunit\TestAsserter.$(H) $(INCLUDE_TOP)\stx\goodies\sunit\TestCase.$(H) $(INCLUDE_TOP)\stx\libbasic\Object.$(H) $(STCHDR)
7063d523b064 Removed autoload attribut for tests.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 377
diff changeset
    78
$(OUTDIR)PPArithmeticParser.$(O) PPArithmeticParser.$(H): PPArithmeticParser.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)
377
6112a403a52d Updated to latest version from Moose repository.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 376
diff changeset
    79
$(OUTDIR)PPContextMementoTest.$(O) PPContextMementoTest.$(H): PPContextMementoTest.st $(INCLUDE_TOP)\stx\goodies\sunit\TestAsserter.$(H) $(INCLUDE_TOP)\stx\goodies\sunit\TestCase.$(H) $(INCLUDE_TOP)\stx\libbasic\Object.$(H) $(STCHDR)
6112a403a52d Updated to latest version from Moose repository.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 376
diff changeset
    80
$(OUTDIR)PPContextTest.$(O) PPContextTest.$(H): PPContextTest.st $(INCLUDE_TOP)\stx\goodies\sunit\TestAsserter.$(H) $(INCLUDE_TOP)\stx\goodies\sunit\TestCase.$(H) $(INCLUDE_TOP)\stx\libbasic\Object.$(H) $(STCHDR)
403
7063d523b064 Removed autoload attribut for tests.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 377
diff changeset
    81
$(OUTDIR)PPLambdaParser.$(O) PPLambdaParser.$(H): PPLambdaParser.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)
7063d523b064 Removed autoload attribut for tests.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 377
diff changeset
    82
$(OUTDIR)PPParserResource.$(O) PPParserResource.$(H): PPParserResource.st $(INCLUDE_TOP)\stx\goodies\sunit\TestAsserter.$(H) $(INCLUDE_TOP)\stx\goodies\sunit\TestResource.$(H) $(INCLUDE_TOP)\stx\libbasic\Object.$(H) $(STCHDR)
248
4e79809dd271 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    83
$(OUTDIR)stx_goodies_petitparser_tests.$(O) stx_goodies_petitparser_tests.$(H): stx_goodies_petitparser_tests.st $(INCLUDE_TOP)\stx\libbasic\LibraryDefinition.$(H) $(INCLUDE_TOP)\stx\libbasic\Object.$(H) $(INCLUDE_TOP)\stx\libbasic\ProjectDefinition.$(H) $(STCHDR)
403
7063d523b064 Removed autoload attribut for tests.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 377
diff changeset
    84
$(OUTDIR)PPComposedTest.$(O) PPComposedTest.$(H): PPComposedTest.st $(INCLUDE_TOP)\stx\goodies\petitparser\tests\PPAbstractParserTest.$(H) $(INCLUDE_TOP)\stx\goodies\sunit\TestAsserter.$(H) $(INCLUDE_TOP)\stx\goodies\sunit\TestCase.$(H) $(INCLUDE_TOP)\stx\libbasic\Object.$(H) $(STCHDR)
7063d523b064 Removed autoload attribut for tests.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 377
diff changeset
    85
$(OUTDIR)PPCompositeParserTest.$(O) PPCompositeParserTest.$(H): PPCompositeParserTest.st $(INCLUDE_TOP)\stx\goodies\petitparser\tests\PPAbstractParserTest.$(H) $(INCLUDE_TOP)\stx\goodies\sunit\TestAsserter.$(H) $(INCLUDE_TOP)\stx\goodies\sunit\TestCase.$(H) $(INCLUDE_TOP)\stx\libbasic\Object.$(H) $(STCHDR)
7063d523b064 Removed autoload attribut for tests.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 377
diff changeset
    86
$(OUTDIR)PPExtensionTest.$(O) PPExtensionTest.$(H): PPExtensionTest.st $(INCLUDE_TOP)\stx\goodies\petitparser\tests\PPAbstractParserTest.$(H) $(INCLUDE_TOP)\stx\goodies\sunit\TestAsserter.$(H) $(INCLUDE_TOP)\stx\goodies\sunit\TestCase.$(H) $(INCLUDE_TOP)\stx\libbasic\Object.$(H) $(STCHDR)
404
8da796db7f95 Removed class PPAbstractParseTest.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 403
diff changeset
    87
$(OUTDIR)PPMappingTest.$(O) PPMappingTest.$(H): PPMappingTest.st $(INCLUDE_TOP)\stx\goodies\petitparser\tests\PPAbstractParserTest.$(H) $(INCLUDE_TOP)\stx\goodies\sunit\TestAsserter.$(H) $(INCLUDE_TOP)\stx\goodies\sunit\TestCase.$(H) $(INCLUDE_TOP)\stx\libbasic\Object.$(H) $(STCHDR)
403
7063d523b064 Removed autoload attribut for tests.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 377
diff changeset
    88
$(OUTDIR)PPObjectTest.$(O) PPObjectTest.$(H): PPObjectTest.st $(INCLUDE_TOP)\stx\goodies\petitparser\tests\PPAbstractParserTest.$(H) $(INCLUDE_TOP)\stx\goodies\sunit\TestAsserter.$(H) $(INCLUDE_TOP)\stx\goodies\sunit\TestCase.$(H) $(INCLUDE_TOP)\stx\libbasic\Object.$(H) $(STCHDR)
7063d523b064 Removed autoload attribut for tests.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 377
diff changeset
    89
$(OUTDIR)PPParserTest.$(O) PPParserTest.$(H): PPParserTest.st $(INCLUDE_TOP)\stx\goodies\petitparser\tests\PPAbstractParserTest.$(H) $(INCLUDE_TOP)\stx\goodies\sunit\TestAsserter.$(H) $(INCLUDE_TOP)\stx\goodies\sunit\TestCase.$(H) $(INCLUDE_TOP)\stx\libbasic\Object.$(H) $(STCHDR)
7063d523b064 Removed autoload attribut for tests.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 377
diff changeset
    90
$(OUTDIR)PPPredicateTest.$(O) PPPredicateTest.$(H): PPPredicateTest.st $(INCLUDE_TOP)\stx\goodies\petitparser\tests\PPAbstractParserTest.$(H) $(INCLUDE_TOP)\stx\goodies\sunit\TestAsserter.$(H) $(INCLUDE_TOP)\stx\goodies\sunit\TestCase.$(H) $(INCLUDE_TOP)\stx\libbasic\Object.$(H) $(STCHDR)
7063d523b064 Removed autoload attribut for tests.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 377
diff changeset
    91
$(OUTDIR)PPScriptingTest.$(O) PPScriptingTest.$(H): PPScriptingTest.st $(INCLUDE_TOP)\stx\goodies\petitparser\tests\PPAbstractParserTest.$(H) $(INCLUDE_TOP)\stx\goodies\sunit\TestAsserter.$(H) $(INCLUDE_TOP)\stx\goodies\sunit\TestCase.$(H) $(INCLUDE_TOP)\stx\libbasic\Object.$(H) $(STCHDR)
7063d523b064 Removed autoload attribut for tests.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 377
diff changeset
    92
$(OUTDIR)PPTokenTest.$(O) PPTokenTest.$(H): PPTokenTest.st $(INCLUDE_TOP)\stx\goodies\petitparser\tests\PPAbstractParserTest.$(H) $(INCLUDE_TOP)\stx\goodies\sunit\TestAsserter.$(H) $(INCLUDE_TOP)\stx\goodies\sunit\TestCase.$(H) $(INCLUDE_TOP)\stx\libbasic\Object.$(H) $(STCHDR)
7063d523b064 Removed autoload attribut for tests.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 377
diff changeset
    93
$(OUTDIR)PPArithmeticParserTest.$(O) PPArithmeticParserTest.$(H): PPArithmeticParserTest.st $(INCLUDE_TOP)\stx\goodies\petitparser\tests\PPAbstractParserTest.$(H) $(INCLUDE_TOP)\stx\goodies\petitparser\tests\PPCompositeParserTest.$(H) $(INCLUDE_TOP)\stx\goodies\sunit\TestAsserter.$(H) $(INCLUDE_TOP)\stx\goodies\sunit\TestCase.$(H) $(INCLUDE_TOP)\stx\libbasic\Object.$(H) $(STCHDR)
7063d523b064 Removed autoload attribut for tests.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 377
diff changeset
    94
$(OUTDIR)PPLambdaParserTest.$(O) PPLambdaParserTest.$(H): PPLambdaParserTest.st $(INCLUDE_TOP)\stx\goodies\petitparser\tests\PPAbstractParserTest.$(H) $(INCLUDE_TOP)\stx\goodies\petitparser\tests\PPCompositeParserTest.$(H) $(INCLUDE_TOP)\stx\goodies\sunit\TestAsserter.$(H) $(INCLUDE_TOP)\stx\goodies\sunit\TestCase.$(H) $(INCLUDE_TOP)\stx\libbasic\Object.$(H) $(STCHDR)
7063d523b064 Removed autoload attribut for tests.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 377
diff changeset
    95
$(OUTDIR)PPExpressionParserTest.$(O) PPExpressionParserTest.$(H): PPExpressionParserTest.st $(INCLUDE_TOP)\stx\goodies\petitparser\tests\PPAbstractParserTest.$(H) $(INCLUDE_TOP)\stx\goodies\petitparser\tests\PPArithmeticParserTest.$(H) $(INCLUDE_TOP)\stx\goodies\petitparser\tests\PPCompositeParserTest.$(H) $(INCLUDE_TOP)\stx\goodies\sunit\TestAsserter.$(H) $(INCLUDE_TOP)\stx\goodies\sunit\TestCase.$(H) $(INCLUDE_TOP)\stx\libbasic\Object.$(H) $(STCHDR)
248
4e79809dd271 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    96
4e79809dd271 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    97
# ENDMAKEDEPEND --- do not remove this line
376
a2656b27cace Added monticelloName to package definition to ease export to .mcz
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 321
diff changeset
    98
a2656b27cace Added monticelloName to package definition to ease export to .mcz
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 321
diff changeset
    99
# **Must be at end**
a2656b27cace Added monticelloName to package definition to ease export to .mcz
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 321
diff changeset
   100
a2656b27cace Added monticelloName to package definition to ease export to .mcz
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 321
diff changeset
   101
# 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: 321
diff changeset
   102
# 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: 321
diff changeset
   103
# 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: 321
diff changeset
   104
!IFDEF HGROOT
a2656b27cace Added monticelloName to package definition to ease export to .mcz
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 321
diff changeset
   105
$(OUTDIR)stx_goodies_petitparser_tests.$(O): $(HGROOT)\.hg\dirstate
a2656b27cace Added monticelloName to package definition to ease export to .mcz
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 321
diff changeset
   106
!ENDIF