bc.mak
author jv
Mon, 03 Sep 2012 11:13:41 +0000
changeset 1 9e312de5f694
child 11 d354ac2af7ec
permissions -rw-r--r--
- Initial commit
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
1
9e312de5f694 - Initial commit
jv
parents:
diff changeset
     1
# $Header$
9e312de5f694 - Initial commit
jv
parents:
diff changeset
     2
#
9e312de5f694 - Initial commit
jv
parents:
diff changeset
     3
# DO NOT EDIT
9e312de5f694 - Initial commit
jv
parents:
diff changeset
     4
# automagically generated from the projectDefinition: stx_goodies_metacello.
9e312de5f694 - Initial commit
jv
parents:
diff changeset
     5
#
9e312de5f694 - Initial commit
jv
parents:
diff changeset
     6
# Warning: once you modify this file, do not rerun
9e312de5f694 - Initial commit
jv
parents:
diff changeset
     7
# stmkmp or projectDefinition-build again - otherwise, your changes are lost.
9e312de5f694 - Initial commit
jv
parents:
diff changeset
     8
#
9e312de5f694 - Initial commit
jv
parents:
diff changeset
     9
# Notice, that the name bc.mak is historical (from times, when only borland c was supported).
9e312de5f694 - Initial commit
jv
parents:
diff changeset
    10
# This file contains make rules for the win32 platform using either borland-bcc or visual-c.
9e312de5f694 - Initial commit
jv
parents:
diff changeset
    11
# It shares common definitions with the unix-make in Make.spec.
9e312de5f694 - Initial commit
jv
parents:
diff changeset
    12
# The bc.mak supports the following targets:
9e312de5f694 - Initial commit
jv
parents:
diff changeset
    13
#    bmake         - compile all st-files to a classLib (dll)
9e312de5f694 - Initial commit
jv
parents:
diff changeset
    14
#    bmake clean   - clean all temp files
9e312de5f694 - Initial commit
jv
parents:
diff changeset
    15
#    bmake clobber - clean all
9e312de5f694 - Initial commit
jv
parents:
diff changeset
    16
#
9e312de5f694 - Initial commit
jv
parents:
diff changeset
    17
# Historic Note:
9e312de5f694 - Initial commit
jv
parents:
diff changeset
    18
#  this used to contain only rules to make with borland 
9e312de5f694 - Initial commit
jv
parents:
diff changeset
    19
#    (called via bmake, by "make.exe -f bc.mak")
9e312de5f694 - Initial commit
jv
parents:
diff changeset
    20
#  this has changed; it is now also possible to build using microsoft visual c
9e312de5f694 - Initial commit
jv
parents:
diff changeset
    21
#    (called via vcmake, by "make.exe -f bc.mak -DUSEVC")
9e312de5f694 - Initial commit
jv
parents:
diff changeset
    22
#
9e312de5f694 - Initial commit
jv
parents:
diff changeset
    23
TOP=..\..
9e312de5f694 - Initial commit
jv
parents:
diff changeset
    24
INCLUDE_TOP=$(TOP)\..
9e312de5f694 - Initial commit
jv
parents:
diff changeset
    25
9e312de5f694 - Initial commit
jv
parents:
diff changeset
    26
9e312de5f694 - Initial commit
jv
parents:
diff changeset
    27
9e312de5f694 - Initial commit
jv
parents:
diff changeset
    28
!INCLUDE $(TOP)\rules\stdHeader_bc
9e312de5f694 - Initial commit
jv
parents:
diff changeset
    29
9e312de5f694 - Initial commit
jv
parents:
diff changeset
    30
!INCLUDE Make.spec
9e312de5f694 - Initial commit
jv
parents:
diff changeset
    31
9e312de5f694 - Initial commit
jv
parents:
diff changeset
    32
LIBNAME=libstx_goodies_metacello
9e312de5f694 - Initial commit
jv
parents:
diff changeset
    33
RESFILES=metacello.res
9e312de5f694 - Initial commit
jv
parents:
diff changeset
    34
9e312de5f694 - Initial commit
jv
parents:
diff changeset
    35
9e312de5f694 - Initial commit
jv
parents:
diff changeset
    36
9e312de5f694 - Initial commit
jv
parents:
diff changeset
    37
LOCALINCLUDES= -I$(INCLUDE_TOP)\stx\goodies\monticello -I$(INCLUDE_TOP)\stx\goodies\sunit -I$(INCLUDE_TOP)\stx\libbasic
9e312de5f694 - Initial commit
jv
parents:
diff changeset
    38
LOCALDEFINES=
9e312de5f694 - Initial commit
jv
parents:
diff changeset
    39
9e312de5f694 - Initial commit
jv
parents:
diff changeset
    40
STCLOCALOPT=-package=$(PACKAGE) -I. $(LOCALINCLUDES) -headerDir=. $(STCLOCALOPTIMIZATIONS) $(STCWARNINGS) $(LOCALDEFINES)  -varPrefix=$(LIBNAME)
9e312de5f694 - Initial commit
jv
parents:
diff changeset
    41
LOCALLIBS=
9e312de5f694 - Initial commit
jv
parents:
diff changeset
    42
9e312de5f694 - Initial commit
jv
parents:
diff changeset
    43
OBJS= $(COMMON_OBJS) $(WIN32_OBJS)
9e312de5f694 - Initial commit
jv
parents:
diff changeset
    44
9e312de5f694 - Initial commit
jv
parents:
diff changeset
    45
ALL::  classLibRule
9e312de5f694 - Initial commit
jv
parents:
diff changeset
    46
9e312de5f694 - Initial commit
jv
parents:
diff changeset
    47
classLibRule: $(OUTDIR) $(OUTDIR)$(LIBNAME).dll
9e312de5f694 - Initial commit
jv
parents:
diff changeset
    48
9e312de5f694 - Initial commit
jv
parents:
diff changeset
    49
!INCLUDE $(TOP)\rules\stdRules_bc
9e312de5f694 - Initial commit
jv
parents:
diff changeset
    50
9e312de5f694 - Initial commit
jv
parents:
diff changeset
    51
# build all prerequisite packages for this package
9e312de5f694 - Initial commit
jv
parents:
diff changeset
    52
prereq:
9e312de5f694 - Initial commit
jv
parents:
diff changeset
    53
	pushd ..\..\libbasic & $(MAKE_BAT) "CFLAGS_LOCAL=$(GLOBALDEFINES) "
9e312de5f694 - Initial commit
jv
parents:
diff changeset
    54
	pushd ..\..\libbasic2 & $(MAKE_BAT) "CFLAGS_LOCAL=$(GLOBALDEFINES) "
9e312de5f694 - Initial commit
jv
parents:
diff changeset
    55
	pushd ..\..\libcomp & $(MAKE_BAT) "CFLAGS_LOCAL=$(GLOBALDEFINES) "
9e312de5f694 - Initial commit
jv
parents:
diff changeset
    56
	pushd ..\..\libview & $(MAKE_BAT) "CFLAGS_LOCAL=$(GLOBALDEFINES) "
9e312de5f694 - Initial commit
jv
parents:
diff changeset
    57
	pushd ..\..\libdb & $(MAKE_BAT) "CFLAGS_LOCAL=$(GLOBALDEFINES) "
9e312de5f694 - Initial commit
jv
parents:
diff changeset
    58
	pushd ..\..\libview2 & $(MAKE_BAT) "CFLAGS_LOCAL=$(GLOBALDEFINES) "
9e312de5f694 - Initial commit
jv
parents:
diff changeset
    59
	pushd ..\..\libboss & $(MAKE_BAT) "CFLAGS_LOCAL=$(GLOBALDEFINES) "
9e312de5f694 - Initial commit
jv
parents:
diff changeset
    60
	pushd ..\..\libdb\libodbc & $(MAKE_BAT) "CFLAGS_LOCAL=$(GLOBALDEFINES) "
9e312de5f694 - Initial commit
jv
parents:
diff changeset
    61
	pushd ..\..\libdb\libsqlite & $(MAKE_BAT) "CFLAGS_LOCAL=$(GLOBALDEFINES) "
9e312de5f694 - Initial commit
jv
parents:
diff changeset
    62
	pushd ..\sunit & $(MAKE_BAT) "CFLAGS_LOCAL=$(GLOBALDEFINES) "
9e312de5f694 - Initial commit
jv
parents:
diff changeset
    63
	pushd ..\..\libui & $(MAKE_BAT) "CFLAGS_LOCAL=$(GLOBALDEFINES) "
9e312de5f694 - Initial commit
jv
parents:
diff changeset
    64
	pushd ..\..\libbasic3 & $(MAKE_BAT) "CFLAGS_LOCAL=$(GLOBALDEFINES) "
9e312de5f694 - Initial commit
jv
parents:
diff changeset
    65
	pushd ..\..\libwidg & $(MAKE_BAT) "CFLAGS_LOCAL=$(GLOBALDEFINES) "
9e312de5f694 - Initial commit
jv
parents:
diff changeset
    66
	pushd ..\..\libhtml & $(MAKE_BAT) "CFLAGS_LOCAL=$(GLOBALDEFINES) "
9e312de5f694 - Initial commit
jv
parents:
diff changeset
    67
	pushd ..\..\libwidg2 & $(MAKE_BAT) "CFLAGS_LOCAL=$(GLOBALDEFINES) "
9e312de5f694 - Initial commit
jv
parents:
diff changeset
    68
	pushd ..\..\libtool & $(MAKE_BAT) "CFLAGS_LOCAL=$(GLOBALDEFINES) "
9e312de5f694 - Initial commit
jv
parents:
diff changeset
    69
	pushd ..\..\libcompat & $(MAKE_BAT) "CFLAGS_LOCAL=$(GLOBALDEFINES) "
9e312de5f694 - Initial commit
jv
parents:
diff changeset
    70
	pushd ..\communication & $(MAKE_BAT) "CFLAGS_LOCAL=$(GLOBALDEFINES) "
9e312de5f694 - Initial commit
jv
parents:
diff changeset
    71
	pushd ..\monticello & $(MAKE_BAT) "CFLAGS_LOCAL=$(GLOBALDEFINES) "
9e312de5f694 - Initial commit
jv
parents:
diff changeset
    72
	pushd ..\..\librun & $(MAKE_BAT) "CFLAGS_LOCAL=$(GLOBALDEFINES) "
9e312de5f694 - Initial commit
jv
parents:
diff changeset
    73
9e312de5f694 - Initial commit
jv
parents:
diff changeset
    74
9e312de5f694 - Initial commit
jv
parents:
diff changeset
    75
9e312de5f694 - Initial commit
jv
parents:
diff changeset
    76
9e312de5f694 - Initial commit
jv
parents:
diff changeset
    77
9e312de5f694 - Initial commit
jv
parents:
diff changeset
    78
# BEGINMAKEDEPEND --- do not remove this line; make depend needs it
9e312de5f694 - Initial commit
jv
parents:
diff changeset
    79
$(OUTDIR)ConfigurationOf.$(O) ConfigurationOf.$(H): ConfigurationOf.st $(INCLUDE_TOP)\stx\libbasic\Object.$(H) $(STCHDR)
9e312de5f694 - Initial commit
jv
parents:
diff changeset
    80
$(OUTDIR)Metacello.$(O) Metacello.$(H): Metacello.st $(INCLUDE_TOP)\stx\libbasic\Object.$(H) $(STCHDR)
9e312de5f694 - Initial commit
jv
parents:
diff changeset
    81
$(OUTDIR)MetacelloAbstractConstructor.$(O) MetacelloAbstractConstructor.$(H): MetacelloAbstractConstructor.st $(INCLUDE_TOP)\stx\libbasic\Object.$(H) $(STCHDR)
9e312de5f694 - Initial commit
jv
parents:
diff changeset
    82
$(OUTDIR)MetacelloCannotUpdateReleasedVersionError.$(O) MetacelloCannotUpdateReleasedVersionError.$(H): MetacelloCannotUpdateReleasedVersionError.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) $(STCHDR)
9e312de5f694 - Initial commit
jv
parents:
diff changeset
    83
$(OUTDIR)MetacelloCleanNotification.$(O) MetacelloCleanNotification.$(H): MetacelloCleanNotification.st $(INCLUDE_TOP)\stx\libbasic\Notification.$(H) $(INCLUDE_TOP)\stx\libbasic\GenericException.$(H) $(INCLUDE_TOP)\stx\libbasic\Object.$(H) $(STCHDR)
9e312de5f694 - Initial commit
jv
parents:
diff changeset
    84
$(OUTDIR)MetacelloClearStackCacheNotification.$(O) MetacelloClearStackCacheNotification.$(H): MetacelloClearStackCacheNotification.st $(INCLUDE_TOP)\stx\libbasic\Notification.$(H) $(INCLUDE_TOP)\stx\libbasic\GenericException.$(H) $(INCLUDE_TOP)\stx\libbasic\Object.$(H) $(STCHDR)
9e312de5f694 - Initial commit
jv
parents:
diff changeset
    85
$(OUTDIR)MetacelloErrorInProjectConstructionNotification.$(O) MetacelloErrorInProjectConstructionNotification.$(H): MetacelloErrorInProjectConstructionNotification.st $(INCLUDE_TOP)\stx\libbasic\Notification.$(H) $(INCLUDE_TOP)\stx\libbasic\GenericException.$(H) $(INCLUDE_TOP)\stx\libbasic\Object.$(H) $(STCHDR)
9e312de5f694 - Initial commit
jv
parents:
diff changeset
    86
$(OUTDIR)MetacelloMethodSection.$(O) MetacelloMethodSection.$(H): MetacelloMethodSection.st $(INCLUDE_TOP)\stx\libbasic\Object.$(H) $(STCHDR)
9e312de5f694 - Initial commit
jv
parents:
diff changeset
    87
$(OUTDIR)MetacelloMethodSpec.$(O) MetacelloMethodSpec.$(H): MetacelloMethodSpec.st $(INCLUDE_TOP)\stx\libbasic\Object.$(H) $(STCHDR)
9e312de5f694 - Initial commit
jv
parents:
diff changeset
    88
$(OUTDIR)MetacelloPackageSpecResolutionError.$(O) MetacelloPackageSpecResolutionError.$(H): MetacelloPackageSpecResolutionError.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) $(STCHDR)
9e312de5f694 - Initial commit
jv
parents:
diff changeset
    89
$(OUTDIR)MetacelloPlatform.$(O) MetacelloPlatform.$(H): MetacelloPlatform.st $(INCLUDE_TOP)\stx\libbasic\Object.$(H) $(STCHDR)
9e312de5f694 - Initial commit
jv
parents:
diff changeset
    90
$(OUTDIR)MetacelloProject.$(O) MetacelloProject.$(H): MetacelloProject.st $(INCLUDE_TOP)\stx\libbasic\Object.$(H) $(STCHDR)
9e312de5f694 - Initial commit
jv
parents:
diff changeset
    91
$(OUTDIR)MetacelloProjectRegistration.$(O) MetacelloProjectRegistration.$(H): MetacelloProjectRegistration.st $(INCLUDE_TOP)\stx\libbasic\Object.$(H) $(STCHDR)
9e312de5f694 - Initial commit
jv
parents:
diff changeset
    92
$(OUTDIR)MetacelloProjectRegistry.$(O) MetacelloProjectRegistry.$(H): MetacelloProjectRegistry.st $(INCLUDE_TOP)\stx\libbasic\Object.$(H) $(STCHDR)
9e312de5f694 - Initial commit
jv
parents:
diff changeset
    93
$(OUTDIR)MetacelloProjectSpecForLoad.$(O) MetacelloProjectSpecForLoad.$(H): MetacelloProjectSpecForLoad.st $(INCLUDE_TOP)\stx\libbasic\Object.$(H) $(STCHDR)
9e312de5f694 - Initial commit
jv
parents:
diff changeset
    94
$(OUTDIR)MetacelloProjectSpecGenerator.$(O) MetacelloProjectSpecGenerator.$(H): MetacelloProjectSpecGenerator.st $(INCLUDE_TOP)\stx\libbasic\Object.$(H) $(STCHDR)
9e312de5f694 - Initial commit
jv
parents:
diff changeset
    95
$(OUTDIR)MetacelloProjectSpecLoadError.$(O) MetacelloProjectSpecLoadError.$(H): MetacelloProjectSpecLoadError.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) $(STCHDR)
9e312de5f694 - Initial commit
jv
parents:
diff changeset
    96
$(OUTDIR)MetacelloScriptEngine.$(O) MetacelloScriptEngine.$(H): MetacelloScriptEngine.st $(INCLUDE_TOP)\stx\libbasic\Object.$(H) $(STCHDR)
9e312de5f694 - Initial commit
jv
parents:
diff changeset
    97
$(OUTDIR)MetacelloScriptExecutor.$(O) MetacelloScriptExecutor.$(H): MetacelloScriptExecutor.st $(INCLUDE_TOP)\stx\libbasic\Object.$(H) $(STCHDR)
9e312de5f694 - Initial commit
jv
parents:
diff changeset
    98
$(OUTDIR)MetacelloScriptGitHubDownloadNotification.$(O) MetacelloScriptGitHubDownloadNotification.$(H): MetacelloScriptGitHubDownloadNotification.st $(INCLUDE_TOP)\stx\libbasic\Notification.$(H) $(INCLUDE_TOP)\stx\libbasic\GenericException.$(H) $(INCLUDE_TOP)\stx\libbasic\Object.$(H) $(STCHDR)
9e312de5f694 - Initial commit
jv
parents:
diff changeset
    99
$(OUTDIR)MetacelloScriptNotification.$(O) MetacelloScriptNotification.$(H): MetacelloScriptNotification.st $(INCLUDE_TOP)\stx\libbasic\Notification.$(H) $(INCLUDE_TOP)\stx\libbasic\GenericException.$(H) $(INCLUDE_TOP)\stx\libbasic\Object.$(H) $(STCHDR)
9e312de5f694 - Initial commit
jv
parents:
diff changeset
   100
$(OUTDIR)MetacelloScriptingError.$(O) MetacelloScriptingError.$(H): MetacelloScriptingError.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) $(STCHDR)
9e312de5f694 - Initial commit
jv
parents:
diff changeset
   101
$(OUTDIR)MetacelloSemanticVersionNumber.$(O) MetacelloSemanticVersionNumber.$(H): MetacelloSemanticVersionNumber.st $(INCLUDE_TOP)\stx\libbasic\Magnitude.$(H) $(INCLUDE_TOP)\stx\libbasic\Object.$(H) $(STCHDR)
9e312de5f694 - Initial commit
jv
parents:
diff changeset
   102
$(OUTDIR)MetacelloSkipDirtyPackageLoad.$(O) MetacelloSkipDirtyPackageLoad.$(H): MetacelloSkipDirtyPackageLoad.st $(INCLUDE_TOP)\stx\libbasic\Notification.$(H) $(INCLUDE_TOP)\stx\libbasic\GenericException.$(H) $(INCLUDE_TOP)\stx\libbasic\Object.$(H) $(STCHDR)
9e312de5f694 - Initial commit
jv
parents:
diff changeset
   103
$(OUTDIR)MetacelloSpec.$(O) MetacelloSpec.$(H): MetacelloSpec.st $(INCLUDE_TOP)\stx\libbasic\Object.$(H) $(STCHDR)
9e312de5f694 - Initial commit
jv
parents:
diff changeset
   104
$(OUTDIR)MetacelloSpecLoader.$(O) MetacelloSpecLoader.$(H): MetacelloSpecLoader.st $(INCLUDE_TOP)\stx\libbasic\Object.$(H) $(STCHDR)
9e312de5f694 - Initial commit
jv
parents:
diff changeset
   105
$(OUTDIR)MetacelloStackCacheNotification.$(O) MetacelloStackCacheNotification.$(H): MetacelloStackCacheNotification.st $(INCLUDE_TOP)\stx\libbasic\Notification.$(H) $(INCLUDE_TOP)\stx\libbasic\GenericException.$(H) $(INCLUDE_TOP)\stx\libbasic\Object.$(H) $(STCHDR)
9e312de5f694 - Initial commit
jv
parents:
diff changeset
   106
$(OUTDIR)MetacelloValidationFailure.$(O) MetacelloValidationFailure.$(H): MetacelloValidationFailure.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) $(STCHDR)
9e312de5f694 - Initial commit
jv
parents:
diff changeset
   107
$(OUTDIR)MetacelloValidationIssue.$(O) MetacelloValidationIssue.$(H): MetacelloValidationIssue.st $(INCLUDE_TOP)\stx\libbasic\Object.$(H) $(STCHDR)
9e312de5f694 - Initial commit
jv
parents:
diff changeset
   108
$(OUTDIR)MetacelloValidationNotification.$(O) MetacelloValidationNotification.$(H): MetacelloValidationNotification.st $(INCLUDE_TOP)\stx\libbasic\Notification.$(H) $(INCLUDE_TOP)\stx\libbasic\GenericException.$(H) $(INCLUDE_TOP)\stx\libbasic\Object.$(H) $(STCHDR)
9e312de5f694 - Initial commit
jv
parents:
diff changeset
   109
$(OUTDIR)MetacelloVersion.$(O) MetacelloVersion.$(H): MetacelloVersion.st $(INCLUDE_TOP)\stx\libbasic\Magnitude.$(H) $(INCLUDE_TOP)\stx\libbasic\Object.$(H) $(STCHDR)
9e312de5f694 - Initial commit
jv
parents:
diff changeset
   110
$(OUTDIR)MetacelloVersionDoesNotExistError.$(O) MetacelloVersionDoesNotExistError.$(H): MetacelloVersionDoesNotExistError.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) $(STCHDR)
9e312de5f694 - Initial commit
jv
parents:
diff changeset
   111
$(OUTDIR)MetacelloVersionNumber.$(O) MetacelloVersionNumber.$(H): MetacelloVersionNumber.st $(INCLUDE_TOP)\stx\libbasic\Magnitude.$(H) $(INCLUDE_TOP)\stx\libbasic\Object.$(H) $(STCHDR)
9e312de5f694 - Initial commit
jv
parents:
diff changeset
   112
$(OUTDIR)stx_goodies_metacello.$(O) stx_goodies_metacello.$(H): stx_goodies_metacello.st $(INCLUDE_TOP)\stx\libbasic\LibraryDefinition.$(H) $(INCLUDE_TOP)\stx\libbasic\ProjectDefinition.$(H) $(INCLUDE_TOP)\stx\libbasic\Object.$(H) $(STCHDR)
9e312de5f694 - Initial commit
jv
parents:
diff changeset
   113
$(OUTDIR)BaselineOf.$(O) BaselineOf.$(H): BaselineOf.st $(INCLUDE_TOP)\stx\goodies\metacello\ConfigurationOf.$(H) $(INCLUDE_TOP)\stx\libbasic\Object.$(H) $(STCHDR)
9e312de5f694 - Initial commit
jv
parents:
diff changeset
   114
$(OUTDIR)MetacelloAbstractPackageSpec.$(O) MetacelloAbstractPackageSpec.$(H): MetacelloAbstractPackageSpec.st $(INCLUDE_TOP)\stx\goodies\metacello\MetacelloSpec.$(H) $(INCLUDE_TOP)\stx\libbasic\Object.$(H) $(STCHDR)
9e312de5f694 - Initial commit
jv
parents:
diff changeset
   115
$(OUTDIR)MetacelloAbstractVersionConstructor.$(O) MetacelloAbstractVersionConstructor.$(H): MetacelloAbstractVersionConstructor.st $(INCLUDE_TOP)\stx\goodies\metacello\MetacelloAbstractConstructor.$(H) $(INCLUDE_TOP)\stx\libbasic\Object.$(H) $(STCHDR)
9e312de5f694 - Initial commit
jv
parents:
diff changeset
   116
$(OUTDIR)MetacelloBaseConfiguration.$(O) MetacelloBaseConfiguration.$(H): MetacelloBaseConfiguration.st $(INCLUDE_TOP)\stx\goodies\metacello\ConfigurationOf.$(H) $(INCLUDE_TOP)\stx\libbasic\Object.$(H) $(STCHDR)
9e312de5f694 - Initial commit
jv
parents:
diff changeset
   117
$(OUTDIR)MetacelloBaselineSpecGenerator.$(O) MetacelloBaselineSpecGenerator.$(H): MetacelloBaselineSpecGenerator.st $(INCLUDE_TOP)\stx\goodies\metacello\MetacelloProjectSpecGenerator.$(H) $(INCLUDE_TOP)\stx\libbasic\Object.$(H) $(STCHDR)
9e312de5f694 - Initial commit
jv
parents:
diff changeset
   118
$(OUTDIR)MetacelloCleanLoadAndTestsNotification.$(O) MetacelloCleanLoadAndTestsNotification.$(H): MetacelloCleanLoadAndTestsNotification.st $(INCLUDE_TOP)\stx\goodies\metacello\MetacelloCleanNotification.$(H) $(INCLUDE_TOP)\stx\libbasic\Notification.$(H) $(INCLUDE_TOP)\stx\libbasic\GenericException.$(H) $(INCLUDE_TOP)\stx\libbasic\Object.$(H) $(STCHDR)
9e312de5f694 - Initial commit
jv
parents:
diff changeset
   119
$(OUTDIR)MetacelloCleanLoadNotification.$(O) MetacelloCleanLoadNotification.$(H): MetacelloCleanLoadNotification.st $(INCLUDE_TOP)\stx\goodies\metacello\MetacelloCleanNotification.$(H) $(INCLUDE_TOP)\stx\libbasic\Notification.$(H) $(INCLUDE_TOP)\stx\libbasic\GenericException.$(H) $(INCLUDE_TOP)\stx\libbasic\Object.$(H) $(STCHDR)
9e312de5f694 - Initial commit
jv
parents:
diff changeset
   120
$(OUTDIR)MetacelloConfigurationSpecGenerator.$(O) MetacelloConfigurationSpecGenerator.$(H): MetacelloConfigurationSpecGenerator.st $(INCLUDE_TOP)\stx\goodies\metacello\MetacelloProjectSpecGenerator.$(H) $(INCLUDE_TOP)\stx\libbasic\Object.$(H) $(STCHDR)
9e312de5f694 - Initial commit
jv
parents:
diff changeset
   121
$(OUTDIR)MetacelloConflictingProjectError.$(O) MetacelloConflictingProjectError.$(H): MetacelloConflictingProjectError.st $(INCLUDE_TOP)\stx\goodies\metacello\MetacelloScriptingError.$(H) $(INCLUDE_TOP)\stx\libbasic\Error.$(H) $(INCLUDE_TOP)\stx\libbasic\Exception.$(H) $(INCLUDE_TOP)\stx\libbasic\GenericException.$(H) $(INCLUDE_TOP)\stx\libbasic\Object.$(H) $(STCHDR)
9e312de5f694 - Initial commit
jv
parents:
diff changeset
   122
$(OUTDIR)MetacelloLockedProjectError.$(O) MetacelloLockedProjectError.$(H): MetacelloLockedProjectError.st $(INCLUDE_TOP)\stx\goodies\metacello\MetacelloScriptingError.$(H) $(INCLUDE_TOP)\stx\libbasic\Error.$(H) $(INCLUDE_TOP)\stx\libbasic\Exception.$(H) $(INCLUDE_TOP)\stx\libbasic\GenericException.$(H) $(INCLUDE_TOP)\stx\libbasic\Object.$(H) $(STCHDR)
9e312de5f694 - Initial commit
jv
parents:
diff changeset
   123
$(OUTDIR)MetacelloMemberListSpec.$(O) MetacelloMemberListSpec.$(H): MetacelloMemberListSpec.st $(INCLUDE_TOP)\stx\goodies\metacello\MetacelloSpec.$(H) $(INCLUDE_TOP)\stx\libbasic\Object.$(H) $(STCHDR)
9e312de5f694 - Initial commit
jv
parents:
diff changeset
   124
$(OUTDIR)MetacelloMemberSpec.$(O) MetacelloMemberSpec.$(H): MetacelloMemberSpec.st $(INCLUDE_TOP)\stx\goodies\metacello\MetacelloSpec.$(H) $(INCLUDE_TOP)\stx\libbasic\Object.$(H) $(STCHDR)
9e312de5f694 - Initial commit
jv
parents:
diff changeset
   125
$(OUTDIR)MetacelloProjectSpec.$(O) MetacelloProjectSpec.$(H): MetacelloProjectSpec.st $(INCLUDE_TOP)\stx\goodies\metacello\MetacelloSpec.$(H) $(INCLUDE_TOP)\stx\libbasic\Object.$(H) $(STCHDR)
9e312de5f694 - Initial commit
jv
parents:
diff changeset
   126
$(OUTDIR)MetacelloProjectSpecLoadConflict.$(O) MetacelloProjectSpecLoadConflict.$(H): MetacelloProjectSpecLoadConflict.st $(INCLUDE_TOP)\stx\goodies\metacello\MetacelloProjectSpecLoadError.$(H) $(INCLUDE_TOP)\stx\libbasic\Error.$(H) $(INCLUDE_TOP)\stx\libbasic\Exception.$(H) $(INCLUDE_TOP)\stx\libbasic\GenericException.$(H) $(INCLUDE_TOP)\stx\libbasic\Object.$(H) $(STCHDR)
9e312de5f694 - Initial commit
jv
parents:
diff changeset
   127
$(OUTDIR)MetacelloResolveProjectUpgrade.$(O) MetacelloResolveProjectUpgrade.$(H): MetacelloResolveProjectUpgrade.st $(INCLUDE_TOP)\stx\goodies\metacello\MetacelloScriptNotification.$(H) $(INCLUDE_TOP)\stx\libbasic\Notification.$(H) $(INCLUDE_TOP)\stx\libbasic\GenericException.$(H) $(INCLUDE_TOP)\stx\libbasic\Object.$(H) $(STCHDR)
9e312de5f694 - Initial commit
jv
parents:
diff changeset
   128
$(OUTDIR)MetacelloScriptApiExecutor.$(O) MetacelloScriptApiExecutor.$(H): MetacelloScriptApiExecutor.st $(INCLUDE_TOP)\stx\goodies\metacello\MetacelloScriptExecutor.$(H) $(INCLUDE_TOP)\stx\libbasic\Object.$(H) $(STCHDR)
9e312de5f694 - Initial commit
jv
parents:
diff changeset
   129
$(OUTDIR)MetacelloScriptEnsureProjectLoadedForDevelopment.$(O) MetacelloScriptEnsureProjectLoadedForDevelopment.$(H): MetacelloScriptEnsureProjectLoadedForDevelopment.st $(INCLUDE_TOP)\stx\goodies\metacello\MetacelloScriptNotification.$(H) $(INCLUDE_TOP)\stx\libbasic\Notification.$(H) $(INCLUDE_TOP)\stx\libbasic\GenericException.$(H) $(INCLUDE_TOP)\stx\libbasic\Object.$(H) $(STCHDR)
9e312de5f694 - Initial commit
jv
parents:
diff changeset
   130
$(OUTDIR)MetacelloScriptImageExecutor.$(O) MetacelloScriptImageExecutor.$(H): MetacelloScriptImageExecutor.st $(INCLUDE_TOP)\stx\goodies\metacello\MetacelloScriptExecutor.$(H) $(INCLUDE_TOP)\stx\libbasic\Object.$(H) $(STCHDR)
9e312de5f694 - Initial commit
jv
parents:
diff changeset
   131
$(OUTDIR)MetacelloScriptProjectSpecNotification.$(O) MetacelloScriptProjectSpecNotification.$(H): MetacelloScriptProjectSpecNotification.st $(INCLUDE_TOP)\stx\goodies\metacello\MetacelloScriptNotification.$(H) $(INCLUDE_TOP)\stx\libbasic\Notification.$(H) $(INCLUDE_TOP)\stx\libbasic\GenericException.$(H) $(INCLUDE_TOP)\stx\libbasic\Object.$(H) $(STCHDR)
9e312de5f694 - Initial commit
jv
parents:
diff changeset
   132
$(OUTDIR)MetacelloScriptRegistryExecutor.$(O) MetacelloScriptRegistryExecutor.$(H): MetacelloScriptRegistryExecutor.st $(INCLUDE_TOP)\stx\goodies\metacello\MetacelloScriptExecutor.$(H) $(INCLUDE_TOP)\stx\libbasic\Object.$(H) $(STCHDR)
9e312de5f694 - Initial commit
jv
parents:
diff changeset
   133
$(OUTDIR)MetacelloSymbolicVersionDoesNotExistError.$(O) MetacelloSymbolicVersionDoesNotExistError.$(H): MetacelloSymbolicVersionDoesNotExistError.st $(INCLUDE_TOP)\stx\goodies\metacello\MetacelloVersionDoesNotExistError.$(H) $(INCLUDE_TOP)\stx\libbasic\Error.$(H) $(INCLUDE_TOP)\stx\libbasic\Exception.$(H) $(INCLUDE_TOP)\stx\libbasic\GenericException.$(H) $(INCLUDE_TOP)\stx\libbasic\Object.$(H) $(STCHDR)
9e312de5f694 - Initial commit
jv
parents:
diff changeset
   134
$(OUTDIR)MetacelloSymbolicVersionMethodSpec.$(O) MetacelloSymbolicVersionMethodSpec.$(H): MetacelloSymbolicVersionMethodSpec.st $(INCLUDE_TOP)\stx\goodies\metacello\MetacelloMethodSpec.$(H) $(INCLUDE_TOP)\stx\libbasic\Object.$(H) $(STCHDR)
9e312de5f694 - Initial commit
jv
parents:
diff changeset
   135
$(OUTDIR)MetacelloSymbolicVersionSpec.$(O) MetacelloSymbolicVersionSpec.$(H): MetacelloSymbolicVersionSpec.st $(INCLUDE_TOP)\stx\goodies\metacello\MetacelloMethodSection.$(H) $(INCLUDE_TOP)\stx\libbasic\Object.$(H) $(STCHDR)
9e312de5f694 - Initial commit
jv
parents:
diff changeset
   136
$(OUTDIR)MetacelloUseUpgradeError.$(O) MetacelloUseUpgradeError.$(H): MetacelloUseUpgradeError.st $(INCLUDE_TOP)\stx\goodies\metacello\MetacelloScriptingError.$(H) $(INCLUDE_TOP)\stx\libbasic\Error.$(H) $(INCLUDE_TOP)\stx\libbasic\Exception.$(H) $(INCLUDE_TOP)\stx\libbasic\GenericException.$(H) $(INCLUDE_TOP)\stx\libbasic\Object.$(H) $(STCHDR)
9e312de5f694 - Initial commit
jv
parents:
diff changeset
   137
$(OUTDIR)MetacelloValidationCriticalWarning.$(O) MetacelloValidationCriticalWarning.$(H): MetacelloValidationCriticalWarning.st $(INCLUDE_TOP)\stx\goodies\metacello\MetacelloValidationIssue.$(H) $(INCLUDE_TOP)\stx\libbasic\Object.$(H) $(STCHDR)
9e312de5f694 - Initial commit
jv
parents:
diff changeset
   138
$(OUTDIR)MetacelloValidationError.$(O) MetacelloValidationError.$(H): MetacelloValidationError.st $(INCLUDE_TOP)\stx\goodies\metacello\MetacelloValidationIssue.$(H) $(INCLUDE_TOP)\stx\libbasic\Object.$(H) $(STCHDR)
9e312de5f694 - Initial commit
jv
parents:
diff changeset
   139
$(OUTDIR)MetacelloValidationWarning.$(O) MetacelloValidationWarning.$(H): MetacelloValidationWarning.st $(INCLUDE_TOP)\stx\goodies\metacello\MetacelloValidationIssue.$(H) $(INCLUDE_TOP)\stx\libbasic\Object.$(H) $(STCHDR)
9e312de5f694 - Initial commit
jv
parents:
diff changeset
   140
$(OUTDIR)MetacelloValueHolderSpec.$(O) MetacelloValueHolderSpec.$(H): MetacelloValueHolderSpec.st $(INCLUDE_TOP)\stx\goodies\metacello\MetacelloSpec.$(H) $(INCLUDE_TOP)\stx\libbasic\Object.$(H) $(STCHDR)
9e312de5f694 - Initial commit
jv
parents:
diff changeset
   141
$(OUTDIR)MetacelloVersionDefinitionError.$(O) MetacelloVersionDefinitionError.$(H): MetacelloVersionDefinitionError.st $(INCLUDE_TOP)\stx\goodies\metacello\MetacelloVersionDoesNotExistError.$(H) $(INCLUDE_TOP)\stx\libbasic\Error.$(H) $(INCLUDE_TOP)\stx\libbasic\Exception.$(H) $(INCLUDE_TOP)\stx\libbasic\GenericException.$(H) $(INCLUDE_TOP)\stx\libbasic\Object.$(H) $(STCHDR)
9e312de5f694 - Initial commit
jv
parents:
diff changeset
   142
$(OUTDIR)MetacelloVersionMethodSection.$(O) MetacelloVersionMethodSection.$(H): MetacelloVersionMethodSection.st $(INCLUDE_TOP)\stx\goodies\metacello\MetacelloMethodSection.$(H) $(INCLUDE_TOP)\stx\libbasic\Object.$(H) $(STCHDR)
9e312de5f694 - Initial commit
jv
parents:
diff changeset
   143
$(OUTDIR)MetacelloVersionMethodSpec.$(O) MetacelloVersionMethodSpec.$(H): MetacelloVersionMethodSpec.st $(INCLUDE_TOP)\stx\goodies\metacello\MetacelloMethodSpec.$(H) $(INCLUDE_TOP)\stx\libbasic\Object.$(H) $(STCHDR)
9e312de5f694 - Initial commit
jv
parents:
diff changeset
   144
$(OUTDIR)MetacelloVersionSpec.$(O) MetacelloVersionSpec.$(H): MetacelloVersionSpec.st $(INCLUDE_TOP)\stx\goodies\metacello\MetacelloSpec.$(H) $(INCLUDE_TOP)\stx\libbasic\Object.$(H) $(STCHDR)
9e312de5f694 - Initial commit
jv
parents:
diff changeset
   145
$(OUTDIR)MetacelloVersionValidator.$(O) MetacelloVersionValidator.$(H): MetacelloVersionValidator.st $(INCLUDE_TOP)\stx\goodies\metacello\MetacelloAbstractConstructor.$(H) $(INCLUDE_TOP)\stx\libbasic\Object.$(H) $(STCHDR)
9e312de5f694 - Initial commit
jv
parents:
diff changeset
   146
$(OUTDIR)MetacelloAddMemberSpec.$(O) MetacelloAddMemberSpec.$(H): MetacelloAddMemberSpec.st $(INCLUDE_TOP)\stx\goodies\metacello\MetacelloMemberSpec.$(H) $(INCLUDE_TOP)\stx\goodies\metacello\MetacelloSpec.$(H) $(INCLUDE_TOP)\stx\libbasic\Object.$(H) $(STCHDR)
9e312de5f694 - Initial commit
jv
parents:
diff changeset
   147
$(OUTDIR)MetacelloAllowConflictingProjectUpgrade.$(O) MetacelloAllowConflictingProjectUpgrade.$(H): MetacelloAllowConflictingProjectUpgrade.st $(INCLUDE_TOP)\stx\goodies\metacello\MetacelloResolveProjectUpgrade.$(H) $(INCLUDE_TOP)\stx\goodies\metacello\MetacelloScriptNotification.$(H) $(INCLUDE_TOP)\stx\libbasic\Notification.$(H) $(INCLUDE_TOP)\stx\libbasic\GenericException.$(H) $(INCLUDE_TOP)\stx\libbasic\Object.$(H) $(STCHDR)
9e312de5f694 - Initial commit
jv
parents:
diff changeset
   148
$(OUTDIR)MetacelloAllowProjectDowngrade.$(O) MetacelloAllowProjectDowngrade.$(H): MetacelloAllowProjectDowngrade.st $(INCLUDE_TOP)\stx\goodies\metacello\MetacelloResolveProjectUpgrade.$(H) $(INCLUDE_TOP)\stx\goodies\metacello\MetacelloScriptNotification.$(H) $(INCLUDE_TOP)\stx\libbasic\Notification.$(H) $(INCLUDE_TOP)\stx\libbasic\GenericException.$(H) $(INCLUDE_TOP)\stx\libbasic\Object.$(H) $(STCHDR)
9e312de5f694 - Initial commit
jv
parents:
diff changeset
   149
$(OUTDIR)MetacelloAllowProjectUpgrade.$(O) MetacelloAllowProjectUpgrade.$(H): MetacelloAllowProjectUpgrade.st $(INCLUDE_TOP)\stx\goodies\metacello\MetacelloResolveProjectUpgrade.$(H) $(INCLUDE_TOP)\stx\goodies\metacello\MetacelloScriptNotification.$(H) $(INCLUDE_TOP)\stx\libbasic\Notification.$(H) $(INCLUDE_TOP)\stx\libbasic\GenericException.$(H) $(INCLUDE_TOP)\stx\libbasic\Object.$(H) $(STCHDR)
9e312de5f694 - Initial commit
jv
parents:
diff changeset
   150
$(OUTDIR)MetacelloBaselineConstructor.$(O) MetacelloBaselineConstructor.$(H): MetacelloBaselineConstructor.st $(INCLUDE_TOP)\stx\goodies\metacello\MetacelloAbstractVersionConstructor.$(H) $(INCLUDE_TOP)\stx\goodies\metacello\MetacelloAbstractConstructor.$(H) $(INCLUDE_TOP)\stx\libbasic\Object.$(H) $(STCHDR)
9e312de5f694 - Initial commit
jv
parents:
diff changeset
   151
$(OUTDIR)MetacelloCopyMemberSpec.$(O) MetacelloCopyMemberSpec.$(H): MetacelloCopyMemberSpec.st $(INCLUDE_TOP)\stx\goodies\metacello\MetacelloMemberSpec.$(H) $(INCLUDE_TOP)\stx\goodies\metacello\MetacelloSpec.$(H) $(INCLUDE_TOP)\stx\libbasic\Object.$(H) $(STCHDR)
9e312de5f694 - Initial commit
jv
parents:
diff changeset
   152
$(OUTDIR)MetacelloGenericProjectSpec.$(O) MetacelloGenericProjectSpec.$(H): MetacelloGenericProjectSpec.st $(INCLUDE_TOP)\stx\goodies\metacello\MetacelloProjectSpec.$(H) $(INCLUDE_TOP)\stx\goodies\metacello\MetacelloSpec.$(H) $(INCLUDE_TOP)\stx\libbasic\Object.$(H) $(STCHDR)
9e312de5f694 - Initial commit
jv
parents:
diff changeset
   153
$(OUTDIR)MetacelloGroupSpec.$(O) MetacelloGroupSpec.$(H): MetacelloGroupSpec.st $(INCLUDE_TOP)\stx\goodies\metacello\MetacelloAbstractPackageSpec.$(H) $(INCLUDE_TOP)\stx\goodies\metacello\MetacelloSpec.$(H) $(INCLUDE_TOP)\stx\libbasic\Object.$(H) $(STCHDR)
9e312de5f694 - Initial commit
jv
parents:
diff changeset
   154
$(OUTDIR)MetacelloLookupBaselineSpecForEnsureLoad.$(O) MetacelloLookupBaselineSpecForEnsureLoad.$(H): MetacelloLookupBaselineSpecForEnsureLoad.st $(INCLUDE_TOP)\stx\goodies\metacello\MetacelloScriptProjectSpecNotification.$(H) $(INCLUDE_TOP)\stx\goodies\metacello\MetacelloScriptNotification.$(H) $(INCLUDE_TOP)\stx\libbasic\Notification.$(H) $(INCLUDE_TOP)\stx\libbasic\GenericException.$(H) $(INCLUDE_TOP)\stx\libbasic\Object.$(H) $(STCHDR)
9e312de5f694 - Initial commit
jv
parents:
diff changeset
   155
$(OUTDIR)MetacelloLookupProjectSpec.$(O) MetacelloLookupProjectSpec.$(H): MetacelloLookupProjectSpec.st $(INCLUDE_TOP)\stx\goodies\metacello\MetacelloScriptProjectSpecNotification.$(H) $(INCLUDE_TOP)\stx\goodies\metacello\MetacelloScriptNotification.$(H) $(INCLUDE_TOP)\stx\libbasic\Notification.$(H) $(INCLUDE_TOP)\stx\libbasic\GenericException.$(H) $(INCLUDE_TOP)\stx\libbasic\Object.$(H) $(STCHDR)
9e312de5f694 - Initial commit
jv
parents:
diff changeset
   156
$(OUTDIR)MetacelloLookupProjectSpecForLoad.$(O) MetacelloLookupProjectSpecForLoad.$(H): MetacelloLookupProjectSpecForLoad.st $(INCLUDE_TOP)\stx\goodies\metacello\MetacelloScriptProjectSpecNotification.$(H) $(INCLUDE_TOP)\stx\goodies\metacello\MetacelloScriptNotification.$(H) $(INCLUDE_TOP)\stx\libbasic\Notification.$(H) $(INCLUDE_TOP)\stx\libbasic\GenericException.$(H) $(INCLUDE_TOP)\stx\libbasic\Object.$(H) $(STCHDR)
9e312de5f694 - Initial commit
jv
parents:
diff changeset
   157
$(OUTDIR)MetacelloMergeMemberSpec.$(O) MetacelloMergeMemberSpec.$(H): MetacelloMergeMemberSpec.st $(INCLUDE_TOP)\stx\goodies\metacello\MetacelloMemberSpec.$(H) $(INCLUDE_TOP)\stx\goodies\metacello\MetacelloSpec.$(H) $(INCLUDE_TOP)\stx\libbasic\Object.$(H) $(STCHDR)
9e312de5f694 - Initial commit
jv
parents:
diff changeset
   158
$(OUTDIR)MetacelloPackagesSpec.$(O) MetacelloPackagesSpec.$(H): MetacelloPackagesSpec.st $(INCLUDE_TOP)\stx\goodies\metacello\MetacelloMemberListSpec.$(H) $(INCLUDE_TOP)\stx\goodies\metacello\MetacelloSpec.$(H) $(INCLUDE_TOP)\stx\libbasic\Object.$(H) $(STCHDR)
9e312de5f694 - Initial commit
jv
parents:
diff changeset
   159
$(OUTDIR)MetacelloProjectReferenceSpec.$(O) MetacelloProjectReferenceSpec.$(H): MetacelloProjectReferenceSpec.st $(INCLUDE_TOP)\stx\goodies\metacello\MetacelloAbstractPackageSpec.$(H) $(INCLUDE_TOP)\stx\goodies\metacello\MetacelloSpec.$(H) $(INCLUDE_TOP)\stx\libbasic\Object.$(H) $(STCHDR)
9e312de5f694 - Initial commit
jv
parents:
diff changeset
   160
$(OUTDIR)MetacelloProjectSpecLoadedNotification.$(O) MetacelloProjectSpecLoadedNotification.$(H): MetacelloProjectSpecLoadedNotification.st $(INCLUDE_TOP)\stx\goodies\metacello\MetacelloScriptProjectSpecNotification.$(H) $(INCLUDE_TOP)\stx\goodies\metacello\MetacelloScriptNotification.$(H) $(INCLUDE_TOP)\stx\libbasic\Notification.$(H) $(INCLUDE_TOP)\stx\libbasic\GenericException.$(H) $(INCLUDE_TOP)\stx\libbasic\Object.$(H) $(STCHDR)
9e312de5f694 - Initial commit
jv
parents:
diff changeset
   161
$(OUTDIR)MetacelloRemoveMemberSpec.$(O) MetacelloRemoveMemberSpec.$(H): MetacelloRemoveMemberSpec.st $(INCLUDE_TOP)\stx\goodies\metacello\MetacelloMemberSpec.$(H) $(INCLUDE_TOP)\stx\goodies\metacello\MetacelloSpec.$(H) $(INCLUDE_TOP)\stx\libbasic\Object.$(H) $(STCHDR)
9e312de5f694 - Initial commit
jv
parents:
diff changeset
   162
$(OUTDIR)MetacelloSymbolicVersionNotDefinedError.$(O) MetacelloSymbolicVersionNotDefinedError.$(H): MetacelloSymbolicVersionNotDefinedError.st $(INCLUDE_TOP)\stx\goodies\metacello\MetacelloSymbolicVersionDoesNotExistError.$(H) $(INCLUDE_TOP)\stx\goodies\metacello\MetacelloVersionDoesNotExistError.$(H) $(INCLUDE_TOP)\stx\libbasic\Error.$(H) $(INCLUDE_TOP)\stx\libbasic\Exception.$(H) $(INCLUDE_TOP)\stx\libbasic\GenericException.$(H) $(INCLUDE_TOP)\stx\libbasic\Object.$(H) $(STCHDR)
9e312de5f694 - Initial commit
jv
parents:
diff changeset
   163
$(OUTDIR)MetacelloToolBoxConstructor.$(O) MetacelloToolBoxConstructor.$(H): MetacelloToolBoxConstructor.st $(INCLUDE_TOP)\stx\goodies\metacello\MetacelloAbstractVersionConstructor.$(H) $(INCLUDE_TOP)\stx\goodies\metacello\MetacelloAbstractConstructor.$(H) $(INCLUDE_TOP)\stx\libbasic\Object.$(H) $(STCHDR)
9e312de5f694 - Initial commit
jv
parents:
diff changeset
   164
$(OUTDIR)MetacelloVersionConstructor.$(O) MetacelloVersionConstructor.$(H): MetacelloVersionConstructor.st $(INCLUDE_TOP)\stx\goodies\metacello\MetacelloAbstractVersionConstructor.$(H) $(INCLUDE_TOP)\stx\goodies\metacello\MetacelloAbstractConstructor.$(H) $(INCLUDE_TOP)\stx\libbasic\Object.$(H) $(STCHDR)
9e312de5f694 - Initial commit
jv
parents:
diff changeset
   165
$(OUTDIR)extensions.$(O): extensions.st $(INCLUDE_TOP)\stx\libbasic\Block.$(H) $(INCLUDE_TOP)\stx\libbasic\CompiledCode.$(H) $(INCLUDE_TOP)\stx\libbasic\ExecutableFunction.$(H) $(INCLUDE_TOP)\stx\libbasic\Object.$(H) $(INCLUDE_TOP)\stx\libbasic\Collection.$(H) $(INCLUDE_TOP)\stx\libbasic\Integer.$(H) $(INCLUDE_TOP)\stx\libbasic\Number.$(H) $(INCLUDE_TOP)\stx\libbasic\ArithmeticValue.$(H) $(INCLUDE_TOP)\stx\libbasic\Magnitude.$(H) $(INCLUDE_TOP)\stx\goodies\monticello\MCRepository.$(H) $(INCLUDE_TOP)\stx\libbasic\String.$(H) $(INCLUDE_TOP)\stx\libbasic\CharacterArray.$(H) $(INCLUDE_TOP)\stx\libbasic\ByteArray.$(H) $(INCLUDE_TOP)\stx\libbasic\UninterpretedBytes.$(H) $(INCLUDE_TOP)\stx\libbasic\ArrayedCollection.$(H) $(INCLUDE_TOP)\stx\libbasic\SequenceableCollection.$(H) $(INCLUDE_TOP)\stx\libbasic\Symbol.$(H) $(INCLUDE_TOP)\stx\libbasic\Timestamp.$(H) $(INCLUDE_TOP)\stx\libbasic\AbstractTime.$(H) $(INCLUDE_TOP)\stx\libbasic\UndefinedObject.$(H) $(STCHDR)
9e312de5f694 - Initial commit
jv
parents:
diff changeset
   166
9e312de5f694 - Initial commit
jv
parents:
diff changeset
   167
# ENDMAKEDEPEND --- do not remove this line