bc.mak
author Jan Vrany <jan.vrany@labware.com>
Thu, 27 Oct 2022 14:53:59 +0100
branchjv
changeset 4735 3b11fb3ede98
parent 4723 524785227024
permissions -rw-r--r--
Allow single underscore as method / block argument and temporaries This commit is a follow up for 38b221e.
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
3772
adf643a87954 2 new query classes
Claus Gittinger <cg@exept.de>
parents: 3525
diff changeset
     1
# $Header$
1318
8b73c36a195f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1011
diff changeset
     2
#
2212
6dbb9eb7b6e1 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2200
diff changeset
     3
# DO NOT EDIT
2905
50ba263cce1a automatically generated by browser
Claus Gittinger <cg@exept.de>
parents: 2838
diff changeset
     4
# automagically generated from the projectDefinition: stx_libcomp.
1318
8b73c36a195f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1011
diff changeset
     5
#
1832
0086aad785e5 automatically generated by browser
Claus Gittinger <cg@exept.de>
parents: 1824
diff changeset
     6
# Warning: once you modify this file, do not rerun
0086aad785e5 automatically generated by browser
Claus Gittinger <cg@exept.de>
parents: 1824
diff changeset
     7
# stmkmp or projectDefinition-build again - otherwise, your changes are lost.
1318
8b73c36a195f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1011
diff changeset
     8
#
2822
d51a72f99b87 automatically generated by browser
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 2779
diff changeset
     9
# Notice, that the name bc.mak is historical (from times, when only borland c was supported).
d51a72f99b87 automatically generated by browser
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 2779
diff changeset
    10
# This file contains make rules for the win32 platform using either borland-bcc or visual-c.
1914
fb6da193471e automatically generated by browser
Claus Gittinger <cg@exept.de>
parents: 1892
diff changeset
    11
# It shares common definitions with the unix-make in Make.spec.
2822
d51a72f99b87 automatically generated by browser
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 2779
diff changeset
    12
# The bc.mak supports the following targets:
1914
fb6da193471e automatically generated by browser
Claus Gittinger <cg@exept.de>
parents: 1892
diff changeset
    13
#    bmake         - compile all st-files to a classLib (dll)
fb6da193471e automatically generated by browser
Claus Gittinger <cg@exept.de>
parents: 1892
diff changeset
    14
#    bmake clean   - clean all temp files
fb6da193471e automatically generated by browser
Claus Gittinger <cg@exept.de>
parents: 1892
diff changeset
    15
#    bmake clobber - clean all
1318
8b73c36a195f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1011
diff changeset
    16
#
2720
bcccea2f0ffb automatically generated by browser
Claus Gittinger <cg@exept.de>
parents: 2638
diff changeset
    17
# Historic Note:
3021
b15e4f9d82ac automatically generated by browser
Claus Gittinger <cg@exept.de>
parents: 2914
diff changeset
    18
#  this used to contain only rules to make with borland
2720
bcccea2f0ffb automatically generated by browser
Claus Gittinger <cg@exept.de>
parents: 2638
diff changeset
    19
#    (called via bmake, by "make.exe -f bc.mak")
2770
5f9ab63e7b5a automatically generated by browser
Claus Gittinger <cg@exept.de>
parents: 2730
diff changeset
    20
#  this has changed; it is now also possible to build using microsoft visual c
2720
bcccea2f0ffb automatically generated by browser
Claus Gittinger <cg@exept.de>
parents: 2638
diff changeset
    21
#    (called via vcmake, by "make.exe -f bc.mak -DUSEVC")
1914
fb6da193471e automatically generated by browser
Claus Gittinger <cg@exept.de>
parents: 1892
diff changeset
    22
#
fb6da193471e automatically generated by browser
Claus Gittinger <cg@exept.de>
parents: 1892
diff changeset
    23
TOP=..
fb6da193471e automatically generated by browser
Claus Gittinger <cg@exept.de>
parents: 1892
diff changeset
    24
INCLUDE_TOP=$(TOP)\..
1832
0086aad785e5 automatically generated by browser
Claus Gittinger <cg@exept.de>
parents: 1824
diff changeset
    25
2200
81f7f54c1fdc automatically generated by browser
Claus Gittinger <cg@exept.de>
parents: 2173
diff changeset
    26
81f7f54c1fdc automatically generated by browser
Claus Gittinger <cg@exept.de>
parents: 2173
diff changeset
    27
# see stdHeader_bc for LIBCOMP_BASE
81f7f54c1fdc automatically generated by browser
Claus Gittinger <cg@exept.de>
parents: 2173
diff changeset
    28
LIB_BASE=$(LIBCOMP_BASE)
81f7f54c1fdc automatically generated by browser
Claus Gittinger <cg@exept.de>
parents: 2173
diff changeset
    29
81f7f54c1fdc automatically generated by browser
Claus Gittinger <cg@exept.de>
parents: 2173
diff changeset
    30
1967
e6b5aae82085 Rename stdRules_nt and stdHeader_nt to ..._bc
Stefan Vogel <sv@exept.de>
parents: 1923
diff changeset
    31
!INCLUDE $(TOP)\rules\stdHeader_bc
1475
2e32d6c6328a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1473
diff changeset
    32
1832
0086aad785e5 automatically generated by browser
Claus Gittinger <cg@exept.de>
parents: 1824
diff changeset
    33
!INCLUDE Make.spec
0086aad785e5 automatically generated by browser
Claus Gittinger <cg@exept.de>
parents: 1824
diff changeset
    34
1914
fb6da193471e automatically generated by browser
Claus Gittinger <cg@exept.de>
parents: 1892
diff changeset
    35
LIBNAME=libstx_libcomp
3525
Claus Gittinger <cg@exept.de>
parents: 3431
diff changeset
    36
MODULE_PATH=libcomp
3914
fd51d1d1c263 class: stx_libcomp
Claus Gittinger <cg@exept.de>
parents: 3908
diff changeset
    37
RESFILES=stx_libcompWINrc.$(RES)
1318
8b73c36a195f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1011
diff changeset
    38
1887
29a63b024b33 automatically generated by browser
Claus Gittinger <cg@exept.de>
parents: 1881
diff changeset
    39
29a63b024b33 automatically generated by browser
Claus Gittinger <cg@exept.de>
parents: 1881
diff changeset
    40
4492
cafe29fe5643 initial checkin
Claus Gittinger <cg@exept.de>
parents: 3914
diff changeset
    41
LOCALINCLUDES= -I$(INCLUDE_TOP)\stx\libbasic
2161
cf765c761677 automatically generated by browser
Claus Gittinger <cg@exept.de>
parents: 2019
diff changeset
    42
LOCALDEFINES=
cf765c761677 automatically generated by browser
Claus Gittinger <cg@exept.de>
parents: 2019
diff changeset
    43
2822
d51a72f99b87 automatically generated by browser
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 2779
diff changeset
    44
STCLOCALOPT=-package=$(PACKAGE) -I. $(LOCALINCLUDES) -headerDir=. $(STCLOCALOPTIMIZATIONS) $(STCWARNINGS) $(LOCALDEFINES) $(COMMONSYMBOLS) -varPrefix=$(LIBNAME)
4358
603355f9a2b4 Win32: fix makefiles / project definition to link against `Psapi.dll`
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 3921
diff changeset
    45
LOCALLIBS=-lPsapi
2161
cf765c761677 automatically generated by browser
Claus Gittinger <cg@exept.de>
parents: 2019
diff changeset
    46
1832
0086aad785e5 automatically generated by browser
Claus Gittinger <cg@exept.de>
parents: 1824
diff changeset
    47
OBJS= $(COMMON_OBJS) $(WIN32_OBJS)
0086aad785e5 automatically generated by browser
Claus Gittinger <cg@exept.de>
parents: 1824
diff changeset
    48
4678
Claus Gittinger <cg@exept.de>
parents: 4492
diff changeset
    49
ALL:: INFO1  classLibRule INFO2
Claus Gittinger <cg@exept.de>
parents: 4492
diff changeset
    50
Claus Gittinger <cg@exept.de>
parents: 4492
diff changeset
    51
INFO1:
Claus Gittinger <cg@exept.de>
parents: 4492
diff changeset
    52
	@echo ============================================================================
Claus Gittinger <cg@exept.de>
parents: 4492
diff changeset
    53
	@echo Building $(PACKAGE)...
Claus Gittinger <cg@exept.de>
parents: 4492
diff changeset
    54
	@echo ----------------------------------------------------------------------------
Claus Gittinger <cg@exept.de>
parents: 4492
diff changeset
    55
Claus Gittinger <cg@exept.de>
parents: 4492
diff changeset
    56
INFO2:
Claus Gittinger <cg@exept.de>
parents: 4492
diff changeset
    57
	@echo ----------------------------------------------------------------------------
Claus Gittinger <cg@exept.de>
parents: 4492
diff changeset
    58
	@echo Done $(PACKAGE)...
Claus Gittinger <cg@exept.de>
parents: 4492
diff changeset
    59
	@echo ============================================================================
2173
5d4a75df39a8 automatically generated by browser
Stefan Vogel <sv@exept.de>
parents: 2161
diff changeset
    60
2212
6dbb9eb7b6e1 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2200
diff changeset
    61
classLibRule: $(OUTDIR) $(OUTDIR)$(LIBNAME).dll
1318
8b73c36a195f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1011
diff changeset
    62
1967
e6b5aae82085 Rename stdRules_nt and stdHeader_nt to ..._bc
Stefan Vogel <sv@exept.de>
parents: 1923
diff changeset
    63
!INCLUDE $(TOP)\rules\stdRules_bc
1318
8b73c36a195f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1011
diff changeset
    64
3076
8cc4cbfeaa08 automatically generated by browser
Claus Gittinger <cg@exept.de>
parents: 3021
diff changeset
    65
# build all mandatory prerequisite packages (containing superclasses) for this package
2161
cf765c761677 automatically generated by browser
Claus Gittinger <cg@exept.de>
parents: 2019
diff changeset
    66
prereq:
2247
36ee90dcab16 automatically generated by browser
Claus Gittinger <cg@exept.de>
parents: 2212
diff changeset
    67
	pushd ..\libbasic & $(MAKE_BAT) "CFLAGS_LOCAL=$(GLOBALDEFINES) "
2161
cf765c761677 automatically generated by browser
Claus Gittinger <cg@exept.de>
parents: 2019
diff changeset
    68
cf765c761677 automatically generated by browser
Claus Gittinger <cg@exept.de>
parents: 2019
diff changeset
    69
1866
c49d4b6f88db automatically generated by browser
Claus Gittinger <cg@exept.de>
parents: 1861
diff changeset
    70
c49d4b6f88db automatically generated by browser
Claus Gittinger <cg@exept.de>
parents: 1861
diff changeset
    71
2720
bcccea2f0ffb automatically generated by browser
Claus Gittinger <cg@exept.de>
parents: 2638
diff changeset
    72
3076
8cc4cbfeaa08 automatically generated by browser
Claus Gittinger <cg@exept.de>
parents: 3021
diff changeset
    73
3366
02947a7ecaa9 added EvalScriptingErrorHandler
Claus Gittinger <cg@exept.de>
parents: 3258
diff changeset
    74
4358
603355f9a2b4 Win32: fix makefiles / project definition to link against `Psapi.dll`
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 3921
diff changeset
    75
test: $(TOP)\goodies\builder\reports
3366
02947a7ecaa9 added EvalScriptingErrorHandler
Claus Gittinger <cg@exept.de>
parents: 3258
diff changeset
    76
	pushd $(TOP)\goodies\builder\reports & $(MAKE_BAT)
02947a7ecaa9 added EvalScriptingErrorHandler
Claus Gittinger <cg@exept.de>
parents: 3258
diff changeset
    77
	$(TOP)\goodies\builder\reports\report-runner.bat -D . -r Builder::TestReport -p $(PACKAGE)
3914
fd51d1d1c263 class: stx_libcomp
Claus Gittinger <cg@exept.de>
parents: 3908
diff changeset
    78
        
3076
8cc4cbfeaa08 automatically generated by browser
Claus Gittinger <cg@exept.de>
parents: 3021
diff changeset
    79
clean::
3908
e616513d197a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3845
diff changeset
    80
	-del *.$(CSUFFIX)
3076
8cc4cbfeaa08 automatically generated by browser
Claus Gittinger <cg@exept.de>
parents: 3021
diff changeset
    81
3366
02947a7ecaa9 added EvalScriptingErrorHandler
Claus Gittinger <cg@exept.de>
parents: 3258
diff changeset
    82
1318
8b73c36a195f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1011
diff changeset
    83
# BEGINMAKEDEPEND --- do not remove this line; make depend needs it
3772
adf643a87954 2 new query classes
Claus Gittinger <cg@exept.de>
parents: 3525
diff changeset
    84
$(OUTDIR)Breakpoint.$(O) Breakpoint.$(C) Breakpoint.$(H): Breakpoint.st $(INCLUDE_TOP)\stx\libbasic\Object.$(H) $(STCHDR)
adf643a87954 2 new query classes
Claus Gittinger <cg@exept.de>
parents: 3525
diff changeset
    85
$(OUTDIR)BreakpointDescription.$(O) BreakpointDescription.$(C) BreakpointDescription.$(H): BreakpointDescription.st $(INCLUDE_TOP)\stx\libbasic\Object.$(H) $(STCHDR)
adf643a87954 2 new query classes
Claus Gittinger <cg@exept.de>
parents: 3525
diff changeset
    86
$(OUTDIR)BreakpointQuery.$(O) BreakpointQuery.$(C) BreakpointQuery.$(H): BreakpointQuery.st $(INCLUDE_TOP)\stx\libbasic\GenericException.$(H) $(INCLUDE_TOP)\stx\libbasic\Notification.$(H) $(INCLUDE_TOP)\stx\libbasic\Object.$(H) $(INCLUDE_TOP)\stx\libbasic\Query.$(H) $(STCHDR)
adf643a87954 2 new query classes
Claus Gittinger <cg@exept.de>
parents: 3525
diff changeset
    87
$(OUTDIR)CompilationErrorHandler.$(O) CompilationErrorHandler.$(C) CompilationErrorHandler.$(H): CompilationErrorHandler.st $(INCLUDE_TOP)\stx\libbasic\Object.$(H) $(STCHDR)
adf643a87954 2 new query classes
Claus Gittinger <cg@exept.de>
parents: 3525
diff changeset
    88
$(OUTDIR)CompilationErrorHandlerQuery.$(O) CompilationErrorHandlerQuery.$(C) CompilationErrorHandlerQuery.$(H): CompilationErrorHandlerQuery.st $(INCLUDE_TOP)\stx\libbasic\GenericException.$(H) $(INCLUDE_TOP)\stx\libbasic\Notification.$(H) $(INCLUDE_TOP)\stx\libbasic\Object.$(H) $(INCLUDE_TOP)\stx\libbasic\Query.$(H) $(STCHDR)
4492
cafe29fe5643 initial checkin
Claus Gittinger <cg@exept.de>
parents: 3914
diff changeset
    89
$(OUTDIR)DoEnableCompilerOptionActionQuery.$(O) DoEnableCompilerOptionActionQuery.$(C) DoEnableCompilerOptionActionQuery.$(H): DoEnableCompilerOptionActionQuery.st $(INCLUDE_TOP)\stx\libbasic\GenericException.$(H) $(INCLUDE_TOP)\stx\libbasic\Notification.$(H) $(INCLUDE_TOP)\stx\libbasic\Object.$(H) $(INCLUDE_TOP)\stx\libbasic\Query.$(H) $(STCHDR)
4383
b93f1405b8c7 DBG: Added classes representing Smalltalk/X debug info.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 3921
diff changeset
    90
$(OUTDIR)DIEntry.$(O) DIEntry.$(C) DIEntry.$(H): DIEntry.st $(INCLUDE_TOP)\stx\libbasic\Object.$(H) $(STCHDR)
b93f1405b8c7 DBG: Added classes representing Smalltalk/X debug info.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 3921
diff changeset
    91
$(OUTDIR)DIInfoVersions.$(O) DIInfoVersions.$(C) DIInfoVersions.$(H): DIInfoVersions.st $(INCLUDE_TOP)\stx\libbasic\Object.$(H) $(INCLUDE_TOP)\stx\libbasic\SharedPool.$(H) $(STCHDR)
b93f1405b8c7 DBG: Added classes representing Smalltalk/X debug info.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 3921
diff changeset
    92
$(OUTDIR)DISectionTypes.$(O) DISectionTypes.$(C) DISectionTypes.$(H): DISectionTypes.st $(INCLUDE_TOP)\stx\libbasic\Object.$(H) $(INCLUDE_TOP)\stx\libbasic\SharedPool.$(H) $(STCHDR)
3772
adf643a87954 2 new query classes
Claus Gittinger <cg@exept.de>
parents: 3525
diff changeset
    93
$(OUTDIR)DoNotShowCompilerWarningAgainActionQuery.$(O) DoNotShowCompilerWarningAgainActionQuery.$(C) DoNotShowCompilerWarningAgainActionQuery.$(H): DoNotShowCompilerWarningAgainActionQuery.st $(INCLUDE_TOP)\stx\libbasic\GenericException.$(H) $(INCLUDE_TOP)\stx\libbasic\Notification.$(H) $(INCLUDE_TOP)\stx\libbasic\Object.$(H) $(INCLUDE_TOP)\stx\libbasic\Query.$(H) $(STCHDR)
adf643a87954 2 new query classes
Claus Gittinger <cg@exept.de>
parents: 3525
diff changeset
    94
$(OUTDIR)DoNotShowCompilerWarningAgainForThisMethodActionQuery.$(O) DoNotShowCompilerWarningAgainForThisMethodActionQuery.$(C) DoNotShowCompilerWarningAgainForThisMethodActionQuery.$(H): DoNotShowCompilerWarningAgainForThisMethodActionQuery.st $(INCLUDE_TOP)\stx\libbasic\GenericException.$(H) $(INCLUDE_TOP)\stx\libbasic\Notification.$(H) $(INCLUDE_TOP)\stx\libbasic\Object.$(H) $(INCLUDE_TOP)\stx\libbasic\Query.$(H) $(STCHDR)
adf643a87954 2 new query classes
Claus Gittinger <cg@exept.de>
parents: 3525
diff changeset
    95
$(OUTDIR)DoNotShowCompilerWarningAgainForThisReceiverSelectorActionQuery.$(O) DoNotShowCompilerWarningAgainForThisReceiverSelectorActionQuery.$(C) DoNotShowCompilerWarningAgainForThisReceiverSelectorActionQuery.$(H): DoNotShowCompilerWarningAgainForThisReceiverSelectorActionQuery.st $(INCLUDE_TOP)\stx\libbasic\GenericException.$(H) $(INCLUDE_TOP)\stx\libbasic\Notification.$(H) $(INCLUDE_TOP)\stx\libbasic\Object.$(H) $(INCLUDE_TOP)\stx\libbasic\Query.$(H) $(STCHDR)
adf643a87954 2 new query classes
Claus Gittinger <cg@exept.de>
parents: 3525
diff changeset
    96
$(OUTDIR)InstrumentationContext.$(O) InstrumentationContext.$(C) InstrumentationContext.$(H): InstrumentationContext.st $(INCLUDE_TOP)\stx\libbasic\Object.$(H) $(STCHDR)
adf643a87954 2 new query classes
Claus Gittinger <cg@exept.de>
parents: 3525
diff changeset
    97
$(OUTDIR)InstrumentationInfo.$(O) InstrumentationInfo.$(C) InstrumentationInfo.$(H): InstrumentationInfo.st $(INCLUDE_TOP)\stx\libbasic\Object.$(H) $(STCHDR)
adf643a87954 2 new query classes
Claus Gittinger <cg@exept.de>
parents: 3525
diff changeset
    98
$(OUTDIR)InstrumentedMethod.$(O) InstrumentedMethod.$(C) InstrumentedMethod.$(H): InstrumentedMethod.st $(INCLUDE_TOP)\stx\libbasic\CompiledCode.$(H) $(INCLUDE_TOP)\stx\libbasic\ExecutableFunction.$(H) $(INCLUDE_TOP)\stx\libbasic\Method.$(H) $(INCLUDE_TOP)\stx\libbasic\Object.$(H) $(STCHDR)
adf643a87954 2 new query classes
Claus Gittinger <cg@exept.de>
parents: 3525
diff changeset
    99
$(OUTDIR)LazyMethod.$(O) LazyMethod.$(C) LazyMethod.$(H): LazyMethod.st $(INCLUDE_TOP)\stx\libbasic\CompiledCode.$(H) $(INCLUDE_TOP)\stx\libbasic\ExecutableFunction.$(H) $(INCLUDE_TOP)\stx\libbasic\Method.$(H) $(INCLUDE_TOP)\stx\libbasic\Object.$(H) $(STCHDR)
adf643a87954 2 new query classes
Claus Gittinger <cg@exept.de>
parents: 3525
diff changeset
   100
$(OUTDIR)ObjectFileHandle.$(O) ObjectFileHandle.$(C) ObjectFileHandle.$(H): ObjectFileHandle.st $(INCLUDE_TOP)\stx\libbasic\Object.$(H) $(STCHDR)
adf643a87954 2 new query classes
Claus Gittinger <cg@exept.de>
parents: 3525
diff changeset
   101
$(OUTDIR)ObjectFileLoader.$(O) ObjectFileLoader.$(C) ObjectFileLoader.$(H): ObjectFileLoader.st $(INCLUDE_TOP)\stx\libbasic\Error.$(H) $(INCLUDE_TOP)\stx\libbasic\Exception.$(H) $(INCLUDE_TOP)\stx\libbasic\GenericException.$(H) $(INCLUDE_TOP)\stx\libbasic\Notification.$(H) $(INCLUDE_TOP)\stx\libbasic\Object.$(H) $(STCHDR)
adf643a87954 2 new query classes
Claus Gittinger <cg@exept.de>
parents: 3525
diff changeset
   102
$(OUTDIR)ParseError.$(O) ParseError.$(C) ParseError.$(H): ParseError.st $(INCLUDE_TOP)\stx\libbasic\Error.$(H) $(INCLUDE_TOP)\stx\libbasic\Exception.$(H) $(INCLUDE_TOP)\stx\libbasic\GenericException.$(H) $(INCLUDE_TOP)\stx\libbasic\Object.$(H) $(INCLUDE_TOP)\stx\libbasic\ProceedableError.$(H) $(STCHDR)
adf643a87954 2 new query classes
Claus Gittinger <cg@exept.de>
parents: 3525
diff changeset
   103
$(OUTDIR)ParseNode.$(O) ParseNode.$(C) ParseNode.$(H): ParseNode.st $(INCLUDE_TOP)\stx\libbasic\Object.$(H) $(STCHDR)
3819
Claus Gittinger <cg@exept.de>
parents: 3772
diff changeset
   104
$(OUTDIR)ParseNodeVisitor.$(O) ParseNodeVisitor.$(C) ParseNodeVisitor.$(H): ParseNodeVisitor.st $(INCLUDE_TOP)\stx\libbasic\Object.$(H) $(STCHDR)
3772
adf643a87954 2 new query classes
Claus Gittinger <cg@exept.de>
parents: 3525
diff changeset
   105
$(OUTDIR)ParseWarning.$(O) ParseWarning.$(C) ParseWarning.$(H): ParseWarning.st $(INCLUDE_TOP)\stx\libbasic\GenericException.$(H) $(INCLUDE_TOP)\stx\libbasic\Notification.$(H) $(INCLUDE_TOP)\stx\libbasic\Object.$(H) $(STCHDR)
adf643a87954 2 new query classes
Claus Gittinger <cg@exept.de>
parents: 3525
diff changeset
   106
$(OUTDIR)ParserFlags.$(O) ParserFlags.$(C) ParserFlags.$(H): ParserFlags.st $(INCLUDE_TOP)\stx\libbasic\Object.$(H) $(STCHDR)
adf643a87954 2 new query classes
Claus Gittinger <cg@exept.de>
parents: 3525
diff changeset
   107
$(OUTDIR)ProgramNodeBuilder.$(O) ProgramNodeBuilder.$(C) ProgramNodeBuilder.$(H): ProgramNodeBuilder.st $(INCLUDE_TOP)\stx\libbasic\Object.$(H) $(STCHDR)
adf643a87954 2 new query classes
Claus Gittinger <cg@exept.de>
parents: 3525
diff changeset
   108
$(OUTDIR)ProgramNodeEnumerator.$(O) ProgramNodeEnumerator.$(C) ProgramNodeEnumerator.$(H): ProgramNodeEnumerator.st $(INCLUDE_TOP)\stx\libbasic\Object.$(H) $(STCHDR)
adf643a87954 2 new query classes
Claus Gittinger <cg@exept.de>
parents: 3525
diff changeset
   109
$(OUTDIR)STCCompilerInterface.$(O) STCCompilerInterface.$(C) STCCompilerInterface.$(H): STCCompilerInterface.st $(INCLUDE_TOP)\stx\libbasic\Object.$(H) $(STCHDR)
adf643a87954 2 new query classes
Claus Gittinger <cg@exept.de>
parents: 3525
diff changeset
   110
$(OUTDIR)Scanner.$(O) Scanner.$(C) Scanner.$(H): Scanner.st $(INCLUDE_TOP)\stx\libbasic\Object.$(H) $(STCHDR)
adf643a87954 2 new query classes
Claus Gittinger <cg@exept.de>
parents: 3525
diff changeset
   111
$(OUTDIR)SourceFileLoader.$(O) SourceFileLoader.$(C) SourceFileLoader.$(H): SourceFileLoader.st $(INCLUDE_TOP)\stx\libbasic\Object.$(H) $(STCHDR)
3914
fd51d1d1c263 class: stx_libcomp
Claus Gittinger <cg@exept.de>
parents: 3908
diff changeset
   112
$(OUTDIR)Structure.$(O) Structure.$(C) Structure.$(H): Structure.st $(INCLUDE_TOP)\stx\libbasic\Behavior.$(H) $(INCLUDE_TOP)\stx\libbasic\Object.$(H) $(STCHDR)
3772
adf643a87954 2 new query classes
Claus Gittinger <cg@exept.de>
parents: 3525
diff changeset
   113
$(OUTDIR)UndefinedVariable.$(O) UndefinedVariable.$(C) UndefinedVariable.$(H): UndefinedVariable.st $(INCLUDE_TOP)\stx\libbasic\Object.$(H) $(STCHDR)
adf643a87954 2 new query classes
Claus Gittinger <cg@exept.de>
parents: 3525
diff changeset
   114
$(OUTDIR)UndefinedVariableNotification.$(O) UndefinedVariableNotification.$(C) UndefinedVariableNotification.$(H): UndefinedVariableNotification.st $(INCLUDE_TOP)\stx\libbasic\GenericException.$(H) $(INCLUDE_TOP)\stx\libbasic\Notification.$(H) $(INCLUDE_TOP)\stx\libbasic\Object.$(H) $(STCHDR)
adf643a87954 2 new query classes
Claus Gittinger <cg@exept.de>
parents: 3525
diff changeset
   115
$(OUTDIR)Variable.$(O) Variable.$(C) Variable.$(H): Variable.st $(INCLUDE_TOP)\stx\libbasic\Object.$(H) $(STCHDR)
adf643a87954 2 new query classes
Claus Gittinger <cg@exept.de>
parents: 3525
diff changeset
   116
$(OUTDIR)stx_libcomp.$(O) stx_libcomp.$(C) stx_libcomp.$(H): stx_libcomp.st $(INCLUDE_TOP)\stx\libbasic\LibraryDefinition.$(H) $(INCLUDE_TOP)\stx\libbasic\Object.$(H) $(INCLUDE_TOP)\stx\libbasic\ProjectDefinition.$(H) $(STCHDR)
adf643a87954 2 new query classes
Claus Gittinger <cg@exept.de>
parents: 3525
diff changeset
   117
$(OUTDIR)AssignmentNode.$(O) AssignmentNode.$(C) AssignmentNode.$(H): AssignmentNode.st $(INCLUDE_TOP)\stx\libbasic\Object.$(H) $(INCLUDE_TOP)\stx\libcomp\ParseNode.$(H) $(STCHDR)
adf643a87954 2 new query classes
Claus Gittinger <cg@exept.de>
parents: 3525
diff changeset
   118
$(OUTDIR)BlockNode.$(O) BlockNode.$(C) BlockNode.$(H): BlockNode.st $(INCLUDE_TOP)\stx\libbasic\Object.$(H) $(INCLUDE_TOP)\stx\libcomp\ParseNode.$(H) $(STCHDR)
adf643a87954 2 new query classes
Claus Gittinger <cg@exept.de>
parents: 3525
diff changeset
   119
$(OUTDIR)BreakpointNode.$(O) BreakpointNode.$(C) BreakpointNode.$(H): BreakpointNode.st $(INCLUDE_TOP)\stx\libbasic\Object.$(H) $(INCLUDE_TOP)\stx\libcomp\ParseNode.$(H) $(STCHDR)
adf643a87954 2 new query classes
Claus Gittinger <cg@exept.de>
parents: 3525
diff changeset
   120
$(OUTDIR)CompilationError.$(O) CompilationError.$(C) CompilationError.$(H): CompilationError.st $(INCLUDE_TOP)\stx\libbasic\Error.$(H) $(INCLUDE_TOP)\stx\libbasic\Exception.$(H) $(INCLUDE_TOP)\stx\libbasic\GenericException.$(H) $(INCLUDE_TOP)\stx\libbasic\Object.$(H) $(INCLUDE_TOP)\stx\libbasic\ProceedableError.$(H) $(INCLUDE_TOP)\stx\libcomp\ParseError.$(H) $(STCHDR)
4384
aee25576d864 DBG: teach `ByteCodeCompiler` to generate Smalltalk/X debug info
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4383
diff changeset
   121
$(OUTDIR)DIInfo.$(O) DIInfo.$(C) DIInfo.$(H): DIInfo.st $(INCLUDE_TOP)\stx\libbasic\Object.$(H) $(INCLUDE_TOP)\stx\libcomp\DIEntry.$(H) $(INCLUDE_TOP)\stx\libcomp\DIInfoVersions.$(H) $(STCHDR)
4383
b93f1405b8c7 DBG: Added classes representing Smalltalk/X debug info.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 3921
diff changeset
   122
$(OUTDIR)DISection.$(O) DISection.$(C) DISection.$(H): DISection.st $(INCLUDE_TOP)\stx\libbasic\Object.$(H) $(INCLUDE_TOP)\stx\libcomp\DIEntry.$(H) $(INCLUDE_TOP)\stx\libcomp\DISectionTypes.$(H) $(STCHDR)
b93f1405b8c7 DBG: Added classes representing Smalltalk/X debug info.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 3921
diff changeset
   123
$(OUTDIR)DIVariable.$(O) DIVariable.$(C) DIVariable.$(H): DIVariable.st $(INCLUDE_TOP)\stx\libbasic\Object.$(H) $(INCLUDE_TOP)\stx\libcomp\DIEntry.$(H) $(STCHDR)
3772
adf643a87954 2 new query classes
Claus Gittinger <cg@exept.de>
parents: 3525
diff changeset
   124
$(OUTDIR)EvalScriptingErrorHandler.$(O) EvalScriptingErrorHandler.$(C) EvalScriptingErrorHandler.$(H): EvalScriptingErrorHandler.st $(INCLUDE_TOP)\stx\libbasic\Object.$(H) $(INCLUDE_TOP)\stx\libcomp\CompilationErrorHandler.$(H) $(STCHDR)
adf643a87954 2 new query classes
Claus Gittinger <cg@exept.de>
parents: 3525
diff changeset
   125
$(OUTDIR)MessageNode.$(O) MessageNode.$(C) MessageNode.$(H): MessageNode.st $(INCLUDE_TOP)\stx\libbasic\Object.$(H) $(INCLUDE_TOP)\stx\libcomp\ParseNode.$(H) $(STCHDR)
adf643a87954 2 new query classes
Claus Gittinger <cg@exept.de>
parents: 3525
diff changeset
   126
$(OUTDIR)MethodNode.$(O) MethodNode.$(C) MethodNode.$(H): MethodNode.st $(INCLUDE_TOP)\stx\libbasic\Object.$(H) $(INCLUDE_TOP)\stx\libcomp\ParseNode.$(H) $(STCHDR)
adf643a87954 2 new query classes
Claus Gittinger <cg@exept.de>
parents: 3525
diff changeset
   127
$(OUTDIR)ParseErrorNode.$(O) ParseErrorNode.$(C) ParseErrorNode.$(H): ParseErrorNode.st $(INCLUDE_TOP)\stx\libbasic\Object.$(H) $(INCLUDE_TOP)\stx\libcomp\ParseNode.$(H) $(STCHDR)
adf643a87954 2 new query classes
Claus Gittinger <cg@exept.de>
parents: 3525
diff changeset
   128
$(OUTDIR)Parser.$(O) Parser.$(C) Parser.$(H): Parser.st $(INCLUDE_TOP)\stx\libbasic\GenericException.$(H) $(INCLUDE_TOP)\stx\libbasic\Notification.$(H) $(INCLUDE_TOP)\stx\libbasic\Object.$(H) $(INCLUDE_TOP)\stx\libbasic\Query.$(H) $(INCLUDE_TOP)\stx\libcomp\Scanner.$(H) $(STCHDR)
3819
Claus Gittinger <cg@exept.de>
parents: 3772
diff changeset
   129
$(OUTDIR)PluggableParseNodeVisitor.$(O) PluggableParseNodeVisitor.$(C) PluggableParseNodeVisitor.$(H): PluggableParseNodeVisitor.st $(INCLUDE_TOP)\stx\libbasic\Object.$(H) $(INCLUDE_TOP)\stx\libcomp\ParseNodeVisitor.$(H) $(STCHDR)
3772
adf643a87954 2 new query classes
Claus Gittinger <cg@exept.de>
parents: 3525
diff changeset
   130
$(OUTDIR)PrimaryNode.$(O) PrimaryNode.$(C) PrimaryNode.$(H): PrimaryNode.st $(INCLUDE_TOP)\stx\libbasic\Object.$(H) $(INCLUDE_TOP)\stx\libcomp\ParseNode.$(H) $(STCHDR)
adf643a87954 2 new query classes
Claus Gittinger <cg@exept.de>
parents: 3525
diff changeset
   131
$(OUTDIR)ProgramNode.$(O) ProgramNode.$(C) ProgramNode.$(H): ProgramNode.st $(INCLUDE_TOP)\stx\libbasic\Object.$(H) $(INCLUDE_TOP)\stx\libcomp\ParseNode.$(H) $(STCHDR)
adf643a87954 2 new query classes
Claus Gittinger <cg@exept.de>
parents: 3525
diff changeset
   132
$(OUTDIR)SelectorNode.$(O) SelectorNode.$(C) SelectorNode.$(H): SelectorNode.st $(INCLUDE_TOP)\stx\libbasic\Object.$(H) $(INCLUDE_TOP)\stx\libcomp\ParseNode.$(H) $(STCHDR)
adf643a87954 2 new query classes
Claus Gittinger <cg@exept.de>
parents: 3525
diff changeset
   133
$(OUTDIR)StatementNode.$(O) StatementNode.$(C) StatementNode.$(H): StatementNode.st $(INCLUDE_TOP)\stx\libbasic\Object.$(H) $(INCLUDE_TOP)\stx\libcomp\ParseNode.$(H) $(STCHDR)
adf643a87954 2 new query classes
Claus Gittinger <cg@exept.de>
parents: 3525
diff changeset
   134
$(OUTDIR)TextCollectingCompilationErrorHandler.$(O) TextCollectingCompilationErrorHandler.$(C) TextCollectingCompilationErrorHandler.$(H): TextCollectingCompilationErrorHandler.st $(INCLUDE_TOP)\stx\libbasic\Object.$(H) $(INCLUDE_TOP)\stx\libcomp\CompilationErrorHandler.$(H) $(STCHDR)
adf643a87954 2 new query classes
Claus Gittinger <cg@exept.de>
parents: 3525
diff changeset
   135
$(OUTDIR)UndefinedSuperclassError.$(O) UndefinedSuperclassError.$(C) UndefinedSuperclassError.$(H): UndefinedSuperclassError.st $(INCLUDE_TOP)\stx\libbasic\Error.$(H) $(INCLUDE_TOP)\stx\libbasic\Exception.$(H) $(INCLUDE_TOP)\stx\libbasic\GenericException.$(H) $(INCLUDE_TOP)\stx\libbasic\Object.$(H) $(INCLUDE_TOP)\stx\libbasic\ProceedableError.$(H) $(INCLUDE_TOP)\stx\libcomp\ParseError.$(H) $(STCHDR)
adf643a87954 2 new query classes
Claus Gittinger <cg@exept.de>
parents: 3525
diff changeset
   136
$(OUTDIR)UndefinedVariableError.$(O) UndefinedVariableError.$(C) UndefinedVariableError.$(H): UndefinedVariableError.st $(INCLUDE_TOP)\stx\libbasic\Error.$(H) $(INCLUDE_TOP)\stx\libbasic\Exception.$(H) $(INCLUDE_TOP)\stx\libbasic\GenericException.$(H) $(INCLUDE_TOP)\stx\libbasic\Object.$(H) $(INCLUDE_TOP)\stx\libbasic\ProceedableError.$(H) $(INCLUDE_TOP)\stx\libcomp\ParseError.$(H) $(STCHDR)
adf643a87954 2 new query classes
Claus Gittinger <cg@exept.de>
parents: 3525
diff changeset
   137
$(OUTDIR)WarningCompilationErrorHandler.$(O) WarningCompilationErrorHandler.$(C) WarningCompilationErrorHandler.$(H): WarningCompilationErrorHandler.st $(INCLUDE_TOP)\stx\libbasic\Object.$(H) $(INCLUDE_TOP)\stx\libcomp\CompilationErrorHandler.$(H) $(STCHDR)
adf643a87954 2 new query classes
Claus Gittinger <cg@exept.de>
parents: 3525
diff changeset
   138
$(OUTDIR)AbstractSyntaxHighlighter.$(O) AbstractSyntaxHighlighter.$(C) AbstractSyntaxHighlighter.$(H): AbstractSyntaxHighlighter.st $(INCLUDE_TOP)\stx\libbasic\Object.$(H) $(INCLUDE_TOP)\stx\libcomp\Parser.$(H) $(INCLUDE_TOP)\stx\libcomp\Scanner.$(H) $(STCHDR)
adf643a87954 2 new query classes
Claus Gittinger <cg@exept.de>
parents: 3525
diff changeset
   139
$(OUTDIR)BinaryNode.$(O) BinaryNode.$(C) BinaryNode.$(H): BinaryNode.st $(INCLUDE_TOP)\stx\libbasic\Object.$(H) $(INCLUDE_TOP)\stx\libcomp\MessageNode.$(H) $(INCLUDE_TOP)\stx\libcomp\ParseNode.$(H) $(STCHDR)
adf643a87954 2 new query classes
Claus Gittinger <cg@exept.de>
parents: 3525
diff changeset
   140
$(OUTDIR)BreakpointAnalyzer.$(O) BreakpointAnalyzer.$(C) BreakpointAnalyzer.$(H): BreakpointAnalyzer.st $(INCLUDE_TOP)\stx\libbasic\Object.$(H) $(INCLUDE_TOP)\stx\libcomp\Parser.$(H) $(INCLUDE_TOP)\stx\libcomp\Scanner.$(H) $(STCHDR)
adf643a87954 2 new query classes
Claus Gittinger <cg@exept.de>
parents: 3525
diff changeset
   141
$(OUTDIR)ByteCodeCompiler.$(O) ByteCodeCompiler.$(C) ByteCodeCompiler.$(H): ByteCodeCompiler.st $(INCLUDE_TOP)\stx\libbasic\Object.$(H) $(INCLUDE_TOP)\stx\libcomp\Parser.$(H) $(INCLUDE_TOP)\stx\libcomp\Scanner.$(H) $(STCHDR)
adf643a87954 2 new query classes
Claus Gittinger <cg@exept.de>
parents: 3525
diff changeset
   142
$(OUTDIR)CascadeNode.$(O) CascadeNode.$(C) CascadeNode.$(H): CascadeNode.st $(INCLUDE_TOP)\stx\libbasic\Object.$(H) $(INCLUDE_TOP)\stx\libcomp\MessageNode.$(H) $(INCLUDE_TOP)\stx\libcomp\ParseNode.$(H) $(STCHDR)
adf643a87954 2 new query classes
Claus Gittinger <cg@exept.de>
parents: 3525
diff changeset
   143
$(OUTDIR)ConstantNode.$(O) ConstantNode.$(C) ConstantNode.$(H): ConstantNode.st $(INCLUDE_TOP)\stx\libbasic\Object.$(H) $(INCLUDE_TOP)\stx\libcomp\ParseNode.$(H) $(INCLUDE_TOP)\stx\libcomp\PrimaryNode.$(H) $(STCHDR)
4384
aee25576d864 DBG: teach `ByteCodeCompiler` to generate Smalltalk/X debug info
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4383
diff changeset
   144
$(OUTDIR)DIVariableTable.$(O) DIVariableTable.$(C) DIVariableTable.$(H): DIVariableTable.st $(INCLUDE_TOP)\stx\libbasic\Object.$(H) $(INCLUDE_TOP)\stx\libcomp\DIEntry.$(H) $(INCLUDE_TOP)\stx\libcomp\DISection.$(H) $(INCLUDE_TOP)\stx\libcomp\DISectionTypes.$(H) $(STCHDR)
3772
adf643a87954 2 new query classes
Claus Gittinger <cg@exept.de>
parents: 3525
diff changeset
   145
$(OUTDIR)Explainer.$(O) Explainer.$(C) Explainer.$(H): Explainer.st $(INCLUDE_TOP)\stx\libbasic\Object.$(H) $(INCLUDE_TOP)\stx\libcomp\Parser.$(H) $(INCLUDE_TOP)\stx\libcomp\Scanner.$(H) $(STCHDR)
adf643a87954 2 new query classes
Claus Gittinger <cg@exept.de>
parents: 3525
diff changeset
   146
$(OUTDIR)PrimitiveNode.$(O) PrimitiveNode.$(C) PrimitiveNode.$(H): PrimitiveNode.st $(INCLUDE_TOP)\stx\libbasic\Object.$(H) $(INCLUDE_TOP)\stx\libcomp\ParseNode.$(H) $(INCLUDE_TOP)\stx\libcomp\StatementNode.$(H) $(STCHDR)
adf643a87954 2 new query classes
Claus Gittinger <cg@exept.de>
parents: 3525
diff changeset
   147
$(OUTDIR)ReturnNode.$(O) ReturnNode.$(C) ReturnNode.$(H): ReturnNode.st $(INCLUDE_TOP)\stx\libbasic\Object.$(H) $(INCLUDE_TOP)\stx\libcomp\ParseNode.$(H) $(INCLUDE_TOP)\stx\libcomp\StatementNode.$(H) $(STCHDR)
adf643a87954 2 new query classes
Claus Gittinger <cg@exept.de>
parents: 3525
diff changeset
   148
$(OUTDIR)SelfNode.$(O) SelfNode.$(C) SelfNode.$(H): SelfNode.st $(INCLUDE_TOP)\stx\libbasic\Object.$(H) $(INCLUDE_TOP)\stx\libcomp\ParseNode.$(H) $(INCLUDE_TOP)\stx\libcomp\PrimaryNode.$(H) $(STCHDR)
adf643a87954 2 new query classes
Claus Gittinger <cg@exept.de>
parents: 3525
diff changeset
   149
$(OUTDIR)UnaryNode.$(O) UnaryNode.$(C) UnaryNode.$(H): UnaryNode.st $(INCLUDE_TOP)\stx\libbasic\Object.$(H) $(INCLUDE_TOP)\stx\libcomp\MessageNode.$(H) $(INCLUDE_TOP)\stx\libcomp\ParseNode.$(H) $(STCHDR)
adf643a87954 2 new query classes
Claus Gittinger <cg@exept.de>
parents: 3525
diff changeset
   150
$(OUTDIR)VariableNode.$(O) VariableNode.$(C) VariableNode.$(H): VariableNode.st $(INCLUDE_TOP)\stx\libbasic\Object.$(H) $(INCLUDE_TOP)\stx\libcomp\ParseNode.$(H) $(INCLUDE_TOP)\stx\libcomp\PrimaryNode.$(H) $(STCHDR)
adf643a87954 2 new query classes
Claus Gittinger <cg@exept.de>
parents: 3525
diff changeset
   151
$(OUTDIR)ByteCodeCompilerWithBreakpointSupport.$(O) ByteCodeCompilerWithBreakpointSupport.$(C) ByteCodeCompilerWithBreakpointSupport.$(H): ByteCodeCompilerWithBreakpointSupport.st $(INCLUDE_TOP)\stx\libbasic\Object.$(H) $(INCLUDE_TOP)\stx\libcomp\ByteCodeCompiler.$(H) $(INCLUDE_TOP)\stx\libcomp\Parser.$(H) $(INCLUDE_TOP)\stx\libcomp\Scanner.$(H) $(STCHDR)
adf643a87954 2 new query classes
Claus Gittinger <cg@exept.de>
parents: 3525
diff changeset
   152
$(OUTDIR)CodeCoverageHighlighter.$(O) CodeCoverageHighlighter.$(C) CodeCoverageHighlighter.$(H): CodeCoverageHighlighter.st $(INCLUDE_TOP)\stx\libbasic\Object.$(H) $(INCLUDE_TOP)\stx\libcomp\AbstractSyntaxHighlighter.$(H) $(INCLUDE_TOP)\stx\libcomp\Parser.$(H) $(INCLUDE_TOP)\stx\libcomp\Scanner.$(H) $(STCHDR)
adf643a87954 2 new query classes
Claus Gittinger <cg@exept.de>
parents: 3525
diff changeset
   153
$(OUTDIR)Decompiler.$(O) Decompiler.$(C) Decompiler.$(H): Decompiler.st $(INCLUDE_TOP)\stx\libbasic\Object.$(H) $(INCLUDE_TOP)\stx\libcomp\ByteCodeCompiler.$(H) $(INCLUDE_TOP)\stx\libcomp\Parser.$(H) $(INCLUDE_TOP)\stx\libcomp\Scanner.$(H) $(STCHDR)
adf643a87954 2 new query classes
Claus Gittinger <cg@exept.de>
parents: 3525
diff changeset
   154
$(OUTDIR)ECompletionConstantNode.$(O) ECompletionConstantNode.$(C) ECompletionConstantNode.$(H): ECompletionConstantNode.st $(INCLUDE_TOP)\stx\libbasic\Object.$(H) $(INCLUDE_TOP)\stx\libcomp\ConstantNode.$(H) $(INCLUDE_TOP)\stx\libcomp\ParseNode.$(H) $(INCLUDE_TOP)\stx\libcomp\PrimaryNode.$(H) $(STCHDR)
adf643a87954 2 new query classes
Claus Gittinger <cg@exept.de>
parents: 3525
diff changeset
   155
$(OUTDIR)InstrumentingCompiler.$(O) InstrumentingCompiler.$(C) InstrumentingCompiler.$(H): InstrumentingCompiler.st $(INCLUDE_TOP)\stx\libbasic\Object.$(H) $(INCLUDE_TOP)\stx\libcomp\ByteCodeCompiler.$(H) $(INCLUDE_TOP)\stx\libcomp\InstrumentationInfo.$(H) $(INCLUDE_TOP)\stx\libcomp\Parser.$(H) $(INCLUDE_TOP)\stx\libcomp\Scanner.$(H) $(STCHDR)
adf643a87954 2 new query classes
Claus Gittinger <cg@exept.de>
parents: 3525
diff changeset
   156
$(OUTDIR)SuperNode.$(O) SuperNode.$(C) SuperNode.$(H): SuperNode.st $(INCLUDE_TOP)\stx\libbasic\Object.$(H) $(INCLUDE_TOP)\stx\libcomp\ParseNode.$(H) $(INCLUDE_TOP)\stx\libcomp\PrimaryNode.$(H) $(INCLUDE_TOP)\stx\libcomp\SelfNode.$(H) $(STCHDR)
adf643a87954 2 new query classes
Claus Gittinger <cg@exept.de>
parents: 3525
diff changeset
   157
$(OUTDIR)SyntaxHighlighter.$(O) SyntaxHighlighter.$(C) SyntaxHighlighter.$(H): SyntaxHighlighter.st $(INCLUDE_TOP)\stx\libbasic\Object.$(H) $(INCLUDE_TOP)\stx\libcomp\AbstractSyntaxHighlighter.$(H) $(INCLUDE_TOP)\stx\libcomp\Parser.$(H) $(INCLUDE_TOP)\stx\libcomp\Scanner.$(H) $(STCHDR)
4384
aee25576d864 DBG: teach `ByteCodeCompiler` to generate Smalltalk/X debug info
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4383
diff changeset
   158
$(OUTDIR)extensions.$(O): extensions.st $(INCLUDE_TOP)\stx\libbasic\Block.$(H) $(INCLUDE_TOP)\stx\libbasic\CompiledCode.$(H) $(INCLUDE_TOP)\stx\libbasic\Context.$(H) $(INCLUDE_TOP)\stx\libbasic\ExecutableFunction.$(H) $(INCLUDE_TOP)\stx\libbasic\Method.$(H) $(INCLUDE_TOP)\stx\libbasic\Object.$(H) $(STCHDR)
1914
fb6da193471e automatically generated by browser
Claus Gittinger <cg@exept.de>
parents: 1892
diff changeset
   159
1318
8b73c36a195f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1011
diff changeset
   160
# ENDMAKEDEPEND --- do not remove this line
4358
603355f9a2b4 Win32: fix makefiles / project definition to link against `Psapi.dll`
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 3921
diff changeset
   161
603355f9a2b4 Win32: fix makefiles / project definition to link against `Psapi.dll`
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 3921
diff changeset
   162
# **Must be at end**
603355f9a2b4 Win32: fix makefiles / project definition to link against `Psapi.dll`
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 3921
diff changeset
   163
603355f9a2b4 Win32: fix makefiles / project definition to link against `Psapi.dll`
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 3921
diff changeset
   164
# Enforce recompilation of package definition class if Mercurial working
603355f9a2b4 Win32: fix makefiles / project definition to link against `Psapi.dll`
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 3921
diff changeset
   165
# copy state changes. Together with --guessVersion it ensures that package
603355f9a2b4 Win32: fix makefiles / project definition to link against `Psapi.dll`
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 3921
diff changeset
   166
# definition class always contains correct binary revision string.
603355f9a2b4 Win32: fix makefiles / project definition to link against `Psapi.dll`
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 3921
diff changeset
   167
!IFDEF HGROOT
603355f9a2b4 Win32: fix makefiles / project definition to link against `Psapi.dll`
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 3921
diff changeset
   168
$(OUTDIR)stx_libcomp.$(O): $(HGROOT)\.hg\dirstate
603355f9a2b4 Win32: fix makefiles / project definition to link against `Psapi.dll`
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 3921
diff changeset
   169
!ENDIF