-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMakefile
29 lines (22 loc) · 1015 Bytes
/
Makefile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
libguestfs:
mkdir -p output/libguestfs
docker buildx build --pull $(BUILDX_ARGS) --output type=local,dest=./output/libguestfs libguestfs
msmtp:
mkdir -p output/msmtp
docker buildx build --pull $(BUILDX_ARGS) --output type=local,dest=./output/msmtp msmtp
ostree:
mkdir -p output/ostree
docker buildx build --pull $(BUILDX_ARGS) --output type=local,dest=./output/ostree ostree
ostree-ext-cli:
mkdir -p output/ostree-ext-cli
docker buildx build --pull $(BUILDX_ARGS) --output type=local,dest=./output/ostree-ext-cli ostree-ext-cli
pygobject:
mkdir -p output/pygobject
docker buildx build --pull $(BUILDX_ARGS) --output type=local,dest=./output/pygobject pygobject
python:
mkdir -p output/python
docker buildx build --pull $(BUILDX_ARGS) --output type=local,dest=./output/python python
python-apt:
mkdir -p output/python-apt
docker buildx build --pull $(BUILDX_ARGS) --output type=local,dest=./output/python-apt python-apt
.PHONY: libguestfs msmtp ostree ostree-ext-cli pygobject python python-apt