mirror of
https://github.com/kylemanna/docker-aosp
synced 2025-06-06 23:46:18 +00:00
10 lines
112 B
Makefile
10 lines
112 B
Makefile
DOCKER = docker
|
|
IMAGE = kylemanna/aosp
|
|
|
|
aosp: Dockerfile
|
|
$(DOCKER) build -t $(IMAGE) .
|
|
|
|
all: aosp
|
|
|
|
.PHONY: all
|