mirror of
https://github.com/linuxkit/linuxkit.git
synced 2025-12-04 12:51:13 +00:00
Make an alpine base image for C and Go builds. Signed-off-by: Justin Cormack <justin.cormack@docker.com>
11 lines
137 B
Makefile
11 lines
137 B
Makefile
DIRS = alpine-base alpine-build-c alpine-build-go
|
|
.PHONY: clean dirs $(DIRS)
|
|
|
|
push: $(DIRS)
|
|
|
|
$(DIRS):
|
|
$(MAKE) -C $@
|
|
|
|
clean:
|
|
rm -f hash
|