Add d.package target for unfetching, update cookbook

This commit is contained in:
Jeremy Soller 2023-09-09 09:15:55 -06:00
parent 0207a9b982
commit 4400396b09
No known key found for this signature in database
GPG key ID: DCFCA852D3906975
2 changed files with 11 additions and 1 deletions

@ -1 +1 @@
Subproject commit 1cc47128b2bf21fdf6fff4348c05fbce6348338f Subproject commit ddab2cd9e8caf4097e6e489138536bd7e5f2e817

View file

@ -33,6 +33,16 @@ else
./clean.sh $* ./clean.sh $*
endif endif
# Invoke unfetch.sh for a single target
d.%: $(FSTOOLS_TAG) FORCE
ifeq ($(PODMAN_BUILD),1)
$(PODMAN_RUN) $(MAKE) $@
else
export PATH="$(PREFIX_PATH):$$PATH" && \
cd cookbook && \
./unfetch.sh $*
endif
# Invoke fetch.sh for a single target # Invoke fetch.sh for a single target
f.%: $(FSTOOLS_TAG) FORCE f.%: $(FSTOOLS_TAG) FORCE
ifeq ($(PODMAN_BUILD),1) ifeq ($(PODMAN_BUILD),1)