aboutsummaryrefslogtreecommitdiffstats
path: root/Makefile
diff options
context:
space:
mode:
authorYann Herklotz <git@yannherklotz.com>2020-10-03 20:06:40 +0100
committerYann Herklotz <git@yannherklotz.com>2020-10-03 20:06:40 +0100
commit129e453f98999209c9d7c8df1604f3ede04499ce (patch)
tree7ba8c9b88eb52650b6ff4970c60ba718180642c7 /Makefile
parent5b53cb7b539420e869cc243ee4e94f81b1ed0bf4 (diff)
downloadvericert-129e453f98999209c9d7c8df1604f3ede04499ce.tar.gz
vericert-129e453f98999209c9d7c8df1604f3ede04499ce.zip
Fix Makefile for verilog backend
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile6
1 files changed, 3 insertions, 3 deletions
diff --git a/Makefile b/Makefile
index e036d6f..84908b8 100644
--- a/Makefile
+++ b/Makefile
@@ -1,12 +1,12 @@
UNAME_S := $(shell uname -s)
ifeq ($(UNAME_S),Linux)
- ARCH := x86_64-linux
+ ARCH := verilog-linux
endif
ifeq ($(UNAME_S),Darwin)
- ARCH := x86_64-macosx
+ ARCH := verilog-macosx
endif
-COMPCERTRECDIRS := lib common x86_64 x86 backend cfrontend driver exportclight cparser
+COMPCERTRECDIRS := lib common verilog backend cfrontend driver exportclight cparser
COQINCLUDES := -R src/common vericert.common \
-R src/extraction vericert.extraction \