mirror of
https://github.com/linuxkit/linuxkit.git
synced 2026-04-04 00:00:38 +00:00
Lots of boilerplate for now on, will work on upstreaming that in the tool properly if needed later. Signed-off-by: Thomas Gazagnaire <thomas@gazagnaire.org>
15 lines
180 B
Makefile
15 lines
180 B
Makefile
.PHONY: all clean
|
|
|
|
all:
|
|
jbuilder build --dev
|
|
|
|
clean:
|
|
jbuilder clean
|
|
|
|
### FIXME: use Makefile template
|
|
|
|
IMAGE=samoht/fdd
|
|
|
|
tag:
|
|
docker build -t $(IMAGE) . && docker push $(IMAGE)
|