aboutsummaryrefslogtreecommitdiff
path: root/Makefile
blob: 624b534c598f6de79b20a222ef48bb12eb213303 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
all: debug

build: build-stage1 build-stage2 # build-stage3

debug: build-stage2
	docker container prune -f
	mkdir -p framebuf
	docker run -it --mount type=bind,source=$(abspath framebuf),target=/framebuf xilinx:intalled

build-stage1:
	cd stage1; docker build -t xilinx:loadonly .

build-stage2:
	cd stage2; docker build -t xilinx:intalled .

build-stage3:
	cd stage3; docker build -t cryptech-alpha  .