Compare commits

..

3 commits

Author SHA1 Message Date
a1c308f29d
feature(daemon): added api renewal & calculated sleep time
Some checks failed
ci/woodpecker/push/arch unknown status
ci/woodpecker/push/docker unknown status
ci/woodpecker/push/build_experimental Pipeline failed
ci/woodpecker/push/lint Pipeline failed
ci/woodpecker/push/build Pipeline was successful
ci/woodpecker/push/test Pipeline was successful
2022-04-30 14:19:08 +02:00
11ac3c0470
docs: added docs command & notice in README 2022-04-30 14:19:08 +02:00
5287067ea7
chore(ci): run builds sequentially 2022-04-30 14:19:08 +02:00

View file

@ -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)