adding noop rules for auxtargets in buildpl, moved deps of buildpl into that phase

This commit is contained in:
Bjoern Michaelsen 2011-12-14 12:13:23 +01:00
parent 9c197011a5
commit fe6499cee5

View file

@ -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: