mirror of
https://github.com/linuxkit/linuxkit.git
synced 2025-07-21 18:11:35 +00:00
Split base/ into base/ and tools/
Signed-off-by: Riyaz Faizullabhoy <riyaz.faizullabhoy@docker.com>
This commit is contained in:
parent
a6416a1214
commit
d66bc2d501
@ -5,7 +5,7 @@ generally with tags based on the image contents.
|
||||
|
||||
- `mobylinux/alpine-base` the base packages for Moby, before we add Docker and our code and config
|
||||
- `mobylinux/alpine-build-c` for building C code
|
||||
- `mobylinux/alpine-bios` for building BIOS image
|
||||
- `mobylinux/mkimage-iso-bios` for building BIOS image
|
||||
- `mobylinux/alpine-efi` for building efi images
|
||||
- `mobylinux/alpine-qemu` for Qemu eg for the tests
|
||||
- `mobylinux/go-compile` for building Go code
|
||||
|
1
tools/.gitignore
vendored
Normal file
1
tools/.gitignore
vendored
Normal file
@ -0,0 +1 @@
|
||||
hash
|
10
tools/Makefile
Normal file
10
tools/Makefile
Normal file
@ -0,0 +1,10 @@
|
||||
DIRS = $(shell find . -type d -depth 1)
|
||||
.PHONY: clean dirs $(DIRS)
|
||||
|
||||
push: $(DIRS)
|
||||
|
||||
$(DIRS):
|
||||
$(MAKE) -C $@
|
||||
|
||||
clean:
|
||||
rm -f hash
|
Loading…
Reference in New Issue
Block a user