diff options
author | Rob Austein <sra@hactrn.net> | 2019-02-11 06:22:01 +0000 |
---|---|---|
committer | Rob Austein <sra@hactrn.net> | 2019-02-11 06:22:01 +0000 |
commit | 6f526cc4567cb551feb4cae121f9a067d491f711 (patch) | |
tree | 33b9dcf972e138cc09760ce2a6b303c6b4f46af5 /Makefile | |
parent | 71861b6ea54738950ac5c8e83e78bbd1215a11ed (diff) |
XiLinx installation sorta kinda mostly working.
Wow what a kludge.
Probably still some license manager antics, but I think that's
separate from installation, licensing is per user.
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 15 |
1 files changed, 14 insertions, 1 deletions
@@ -1,4 +1,17 @@ -all: +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 . |