diff options
author | Norbert Thiebaud <nthiebaud@gmail.com> | 2012-02-06 02:42:38 -0600 |
---|---|---|
committer | Norbert Thiebaud <nthiebaud@gmail.com> | 2012-02-06 02:42:38 -0600 |
commit | fcc56e8a894dfeb8885f663f33f364becec5d176 (patch) | |
tree | 223c3e5ec9191826af3471f6c53d4ad6627499eb /cross_toolset | |
parent | 015713cd664b905b7090816db0e67b1b17df183e (diff) |
again with bootstrap, but for cross-compile this time
Diffstat (limited to 'cross_toolset')
-rw-r--r-- | cross_toolset/Makefile | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/cross_toolset/Makefile b/cross_toolset/Makefile index 271c83a316a0..5b80d7bc4601 100644 --- a/cross_toolset/Makefile +++ b/cross_toolset/Makefile @@ -6,6 +6,14 @@ SHELL=/usr/bin/env bash include ../config_build.mk +# +# Bootstap +# +$(WORKDIR)/bootstrap: + @cd $(SRC_ROOT) && ./bootstrap + @mkdir -p $(dir $@) && touch $@ + +bootstrap: $(WORKDIR)/bootstrap .PHONY : build |