xmet/Makefile

9 lines
130 B
Makefile
Raw Permalink Normal View History

DOCKER = docker
2025-02-22 13:53:54 -05:00
DOCKER_TAG = xmet:latest
all:
$(DOCKER) image build --tag $(DOCKER_TAG) .
clean:
$(DOCKER) rmi $(DOCKER_TAG)