adding noop rules for auxtargets in buildpl, moved deps of buildpl into that phase
This commit is contained in:
parent
9c197011a5
commit
fe6499cee5
1 changed files with 49 additions and 3 deletions
|
@ -44,10 +44,13 @@ distro-pack-install: install
|
|||
$(SRCDIR)/bin/distro-install-sdk
|
||||
$(SRCDIR)/bin/distro-install-file-lists
|
||||
|
||||
$(SRCDIR)/src.downloaded: $(SRCDIR)/ooo.lst $(SRCDIR)/download
|
||||
$(if $(filter YES,$(DO_FETCH_TARBALLS)),cd $(SRCDIR) && ./download ./ooo.lst && touch $@,touch $@)
|
||||
|
||||
fetch: $(SRCDIR)/src.downloaded
|
||||
#these need to stay in the buildpl phase as buildpl depends on them
|
||||
$(SRCDIR)/src.downloaded:
|
||||
@true
|
||||
|
||||
fetch:
|
||||
@true
|
||||
|
||||
# fixme: can we prevent these exports in the first place?
|
||||
$(SRCDIR)/Env.Host.sh: autogen.lastrun configure.in ooo.lst.in set_soenv.in
|
||||
|
@ -55,6 +58,7 @@ $(SRCDIR)/Env.Host.sh: autogen.lastrun configure.in ooo.lst.in set_soenv.in
|
|||
|
||||
autogen.lastrun:
|
||||
|
||||
|
||||
$(WORKDIR)/bootstrap:
|
||||
@cd $(SRCDIR) && ./bootstrap
|
||||
@mkdir -p $(dir $@) && touch $@
|
||||
|
@ -88,6 +92,48 @@ install: build
|
|||
|
||||
endif
|
||||
|
||||
else
|
||||
$(SRCDIR)/src.downloaded: $(SRCDIR)/ooo.lst $(SRCDIR)/download
|
||||
$(if $(filter YES,$(DO_FETCH_TARBALLS)),cd $(SRCDIR) && ./download ./ooo.lst && touch $@,touch $@)
|
||||
|
||||
fetch: $(SRCDIR)/src.downloaded
|
||||
|
||||
id:
|
||||
@true
|
||||
|
||||
tags:
|
||||
@true
|
||||
|
||||
docs:
|
||||
@true
|
||||
|
||||
distro-pack-install:
|
||||
@true
|
||||
|
||||
$(SRCDIR)/Env.Host.sh:
|
||||
@true
|
||||
|
||||
autogen.lastrun:
|
||||
@true
|
||||
|
||||
$(WORKDIR)/bootstrap:
|
||||
@true
|
||||
|
||||
bootstrap:
|
||||
@true
|
||||
|
||||
clean-host:
|
||||
@true
|
||||
|
||||
clean-build:
|
||||
@true
|
||||
|
||||
distclean:
|
||||
@true
|
||||
|
||||
install:
|
||||
@true
|
||||
|
||||
endif
|
||||
|
||||
# vim:set shiftwidth=4 softtabstop=4 noexpandtab:
|
||||
|
|
Loading…
Reference in a new issue