Add f.recipe target to fetch recipes

This commit is contained in:
Jeremy Soller 2023-02-25 08:45:27 -07:00
parent cc0988389a
commit 383003220c
No known key found for this signature in database
GPG key ID: DCFCA852D3906975

View file

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