Add f.recipe target to fetch recipes
This commit is contained in:
parent
cc0988389a
commit
383003220c
10
mk/repo.mk
10
mk/repo.mk
|
@ -37,6 +37,16 @@ else
|
|||
./clean.sh $*
|
||||
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
|
||||
r.%: FORCE
|
||||
ifeq ($(PODMAN_BUILD),1)
|
||||
|
|
Loading…
Reference in a new issue