10 |
|
all: exit |
11 |
|
endif |
12 |
|
|
13 |
+ |
# -- storage of libraries |
14 |
+ |
librarystore:=$(LOCALTOP)/$(INTlib) |
15 |
+ |
vpath %.$(SharedSuffix) $(librarystore):$(RELEASETOP)/$(INTlib) |
16 |
+ |
vpath %.$(ArchiveSuffix) $(librarystore):$(RELEASETOP)/$(INTlib) |
17 |
+ |
|
18 |
+ |
libsavaillocal=$(notdir $(wildcard $(librarystore)/*)) |
19 |
+ |
libsavailbase=$(notdir $(wildcard $(RELEASETOP)/$(INTlib)/*)) |
20 |
+ |
libsavail=$(sort $(libsavailbase) $(libsavaillocal)) |
21 |
+ |
libslocal=$(foreach var,$(lib),$(filter lib$(var).a, $(libsavail))) |
22 |
+ |
libslocal_I=$(foreach var,$(lib_I),$(filter lib$(var).a, $(libsavail))) |
23 |
+ |
libslocal_d=$(foreach var,$(lib_d),$(filter lib$(var).a, $(libsavail))) |
24 |
|
|
25 |
|
# |
26 |
|
# Pointing to file storage locations for the various types |
33 |
|
# |
34 |
|
ifdef ReqDependencies |
35 |
|
always:$(LOCALTOP)/$(workdir)/PackageReqs |
36 |
< |
$(LOCALTOP)/$(workdir)/PackageReqs::$(ReqDependencies) |
36 |
> |
$(LOCALTOP)/$(workdir)/PackageReqs:$(ReqDependencies) |
37 |
|
$(TOOL_HOME)/BuildPackageReqs $@ $? |
38 |
|
endif |
39 |
|
|
91 |
|
# |
92 |
|
# clientmakefile creation |
93 |
|
# |
94 |
< |
$(clientmakefile):: $(LOCALTOP)/.SCRAM/${SCRAM_ARCH}/clientsettings $(LOCALTOP)/.SCRAM/${SCRAM_ARCH}/clientsettings_reqs $(projdeps) $(TOOL_HOME)/ProcessSiteFile |
94 |
> |
$(clientmakefile): $(LOCALTOP)/.SCRAM/${SCRAM_ARCH}/clientsettings $(LOCALTOP)/.SCRAM/${SCRAM_ARCH}/clientsettings_reqs $(projdeps) $(TOOL_HOME)/ProcessSiteFile |
95 |
|
@$(TOOL_HOME)/ProcessSiteFile $< $@ $(projdeps) |
96 |
|
|
97 |
|
HELPINCLUDEMAKEFILES := ${DefaultBuildFile} ${TOOL_HOME}/toolrules.mk |
127 |
|
ifdef DefaultMakefile |
128 |
|
clean:: |
129 |
|
@echo Cleaning working folder $(workdir) |
130 |
< |
@rm -rf $(LOCALTOP)/$(workdir)/* |
130 |
> |
@rm -rf $(LOCALTOP)/$(workdir)/.* $(LOCALTOP)/$(workdir)/* |
131 |
|
|
132 |
|
very_clean: |
133 |
|
@echo Cleaning all working folders in $(INTwork) |