Skip to content
Snippets Groups Projects
Commit e263dcee authored by Eric Lippmann's avatar Eric Lippmann
Browse files

Fix Makefile

parent b3457499
No related branches found
No related tags found
No related merge requests found
Pipeline #25202 failed
all:
$(MAKE) -C 33
$(MAKE) -C 34
$(MAKE) -C 35
$(MAKE) -C 36
push:
$(MAKE) -C 33 push
$(MAKE) -C 34 push
$(MAKE) -C 35 push
$(MAKE) -C 36 push
TARGETS := $(patsubst %/Dockerfile,%,$(wildcard */Dockerfile))
PUSH_TARGETS := $(patsubst %,%-push,$(TARGETS))
.PHONY: $(TARGETS)
all: $(TARGETS)
$(TARGETS):
$(MAKE) -C $@
$(PUSH_TARGETS):
$(MAKE) -C $@ push
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment