diff options
author | Peter Korsgaard <jacmet@sunsite.dk> | 2009-03-19 11:06:47 +0000 |
---|---|---|
committer | Peter Korsgaard <jacmet@sunsite.dk> | 2009-03-19 11:06:47 +0000 |
commit | e7b38c71ce55720f7709f0049f5bfc71ca0615ec (patch) | |
tree | 2ce70187ad1380f02c1777e7da3a48fb16d9f26a /package/expat | |
parent | f58ff9a25f24576e032c65d762e5b8fdd2cf5c1c (diff) | |
download | buildroot-novena-e7b38c71ce55720f7709f0049f5bfc71ca0615ec.tar.gz buildroot-novena-e7b38c71ce55720f7709f0049f5bfc71ca0615ec.zip |
package: add STAMP_DIR and use for host builds
Move stamp (dependency) files outside the (version specific) source
directories, so other packages can hardcode dependencies on them instead
of having to use <PACKAGE>_VERSION variables.
This is important as the variables in the make rules are evaluated when
the rules is seen, which might be before the dependent makefile is parsed
(and hence <PACKAGE>_VERSION variable is known, screwing up stuff.
The downside of this is that the package isn't automatically rebuilt
when the version changes (E.G. by a svn update) and you now also have to
remove the stamp files next to $(BUILD_DIR)/<PACKAGE>-* to force a rebuild.
Diffstat (limited to 'package/expat')
-rw-r--r-- | package/expat/expat.mk | 34 |
1 files changed, 17 insertions, 17 deletions
diff --git a/package/expat/expat.mk b/package/expat/expat.mk index 4028a8f08..95383e610 100644 --- a/package/expat/expat.mk +++ b/package/expat/expat.mk @@ -26,40 +26,40 @@ $(EXPAT_HOOK_POST_INSTALL): $(EXPAT_TARGET_INSTALL_TARGET) # expat for the host EXPAT_HOST_DIR:=$(BUILD_DIR)/expat-$(EXPAT_VERSION)-host -EXPAT_HOST_BINARY:=$(HOST_DIR)/usr/lib/libexpat.a -$(EXPAT_HOST_DIR)/.unpacked: $(DL_DIR)/$(EXPAT_SOURCE) - mkdir -p $(@D) +$(STAMP_DIR)/host_expat_unpacked: $(DL_DIR)/$(EXPAT_SOURCE) + mkdir -p $(EXPAT_HOST_DIR) $(INFLATE$(suffix $(EXPAT_SOURCE))) $< | \ - $(TAR) $(TAR_STRIP_COMPONENTS)=1 -C $(@D) $(TAR_OPTIONS) - + $(TAR) $(TAR_STRIP_COMPONENTS)=1 -C $(EXPAT_HOST_DIR) $(TAR_OPTIONS) - touch $@ -$(EXPAT_HOST_DIR)/.configured: $(EXPAT_HOST_DIR)/.unpacked - (cd $(@D); rm -rf config.cache; \ +$(STAMP_DIR)/host_expat_configured: $(STAMP_DIR)/host_expat_unpacked + (cd $(EXPAT_HOST_DIR); rm -rf config.cache; \ $(HOST_CONFIGURE_OPTS) \ CFLAGS="$(HOST_CFLAGS)" \ LDFLAGS="$(HOST_LDFLAGS)" \ - $(@D)/configure \ - --prefix=$(HOST_DIR)/usr \ - --sysconfdir=$(HOST_DIR)/etc \ + ./configure \ + --prefix="$(HOST_DIR)/usr" \ + --sysconfdir="$(HOST_DIR)/etc" \ ) touch $@ -$(EXPAT_HOST_DIR)/.compiled: $(EXPAT_HOST_DIR)/.configured - $(HOST_MAKE_ENV) $(MAKE) -C $(@D) +$(STAMP_DIR)/host_expat_compiled: $(STAMP_DIR)/host_expat_configured + $(HOST_MAKE_ENV) $(MAKE) -C $(EXPAT_HOST_DIR) touch $@ -$(EXPAT_HOST_BINARY): $(EXPAT_HOST_DIR)/.compiled - $(MAKE) -C $(<D) installlib +$(STAMP_DIR)/host_expat_installed: $(STAMP_DIR)/host_expat_compiled + $(MAKE) -C $(EXPAT_HOST_DIR) installlib + touch $@ -host-expat: $(EXPAT_HOST_BINARY) +host-expat: $(STAM_DIR)/host_expat_installed host-expat-source: expat-source host-expat-clean: - rm -f $(addprefix $(EXPAT_HOST_DIR)/,.unpacked .configured .compiled) - $(MAKE) -C $(EXPAT_HOST_DIR) uninstall - $(MAKE) -C $(EXPAT_HOST_DIR) clean + rm -f $(addprefix $(STAMP_DIR)/host_expat_,unpacked configured compiled installed) + -$(MAKE) -C $(EXPAT_HOST_DIR) uninstall + -$(MAKE) -C $(EXPAT_HOST_DIR) clean host-expat-dirclean: rm -rf $(EXPAT_HOST_DIR) |