diff options
author | TheCharlatan <seb.kung@gmail.com> | 2019-06-17 11:22:55 +0200 |
---|---|---|
committer | TheCharlatan <seb.kung@gmail.com> | 2019-06-25 09:20:47 +0200 |
commit | 1dbfc812e17137b87c545e30ac7f2ce489218ed6 (patch) | |
tree | 95018dfa8a22a7e0cbfb5f1db202a10746fe94c1 /contrib/depends/funcs.mk | |
parent | Merge pull request #5641 (diff) | |
download | monero-1dbfc812e17137b87c545e30ac7f2ce489218ed6.tar.xz |
Add debug targets to depends Makefile
Packages can now be built individually and for each stage. This allows
easier debugging.
Diffstat (limited to '')
-rw-r--r-- | contrib/depends/funcs.mk | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/contrib/depends/funcs.mk b/contrib/depends/funcs.mk index 15e404e42..469144361 100644 --- a/contrib/depends/funcs.mk +++ b/contrib/depends/funcs.mk @@ -213,6 +213,14 @@ $(1): | $($(1)_cached_checksum) endef +stages = fetched extracted preprocessed configured built staged postprocessed cached cached_checksum + +define ext_add_stages +$(foreach stage,$(stages), + $(1)_$(stage): $($(1)_$(stage)) + .PHONY: $(1)_$(stage)) +endef + # These functions create the build targets for each package. They must be # broken down into small steps so that each part is done for all packages # before moving on to the next step. Otherwise, a package's info |