aboutsummaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorRob Austein <sra@hactrn.net>2019-02-11 16:11:50 +0000
committerRob Austein <sra@hactrn.net>2019-02-11 16:11:50 +0000
commitc2b870dce68ea9a0cc207cd7e7f6bbcffe40fcb2 (patch)
tree8ce18f0d5145f12da1e83f930b1431a41a6fa40d /Makefile
parente556e6643e5d2300a38e4373bde45e83178becaf (diff)
Missing library.
Pretty sure these changes are correct, but Xvfb is refusing to start under `docker build`. Worked under `docker run`. Investigate when next I have time to spend on this hack.
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile6
1 files changed, 3 insertions, 3 deletions
diff --git a/Makefile b/Makefile
index 3162bad..58db110 100644
--- a/Makefile
+++ b/Makefile
@@ -14,15 +14,15 @@ stage0.stamp:
sudo rm -rf stage0/jessie_chroot
touch $@
-stage1.stamp: stage0.stamp
+stage1.stamp: stage0.stamp stage1/Dockerfile
cd stage1; docker build -t xilinx:loaded .
touch $@
-stage2.stamp: stage1.stamp
+stage2.stamp: stage1.stamp stage2/Dockerfile
cd stage2; docker build -t xilinx:installed .
touch $@
-stage3.stamp: stage2.stamp
+stage3.stamp: stage2.stamp stage3/Dockerfile
cd stage3; docker build -t cryptech-alpha-builder .
touch $@