Compare commits
3 Commits
a5239ced1f
...
a1c308f29d
| Author | SHA1 | Date |
|---|---|---|
|
|
a1c308f29d | |
|
|
11ac3c0470 | |
|
|
5287067ea7 |
5
Makefile
5
Makefile
|
|
@ -3,14 +3,13 @@ SRC_DIR := src
|
|||
SOURCES != find '$(SRC_DIR)' -iname '*.v'
|
||||
|
||||
V_PATH ?= v
|
||||
V := $(V_PATH) -showcc -gc boehm -d dynamic_boehm
|
||||
V := $(V_PATH) -showcc -gc boehm
|
||||
|
||||
all: vieter
|
||||
|
||||
|
||||
# =====COMPILATION=====
|
||||
# We force the boehm gc to be compiled dynamically because otherwise, our CI
|
||||
# build breaks.
|
||||
# Regular binary
|
||||
vieter: $(SOURCES)
|
||||
$(V) -g -o vieter $(SRC_DIR)
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue