vieter/Makefile

76 lines
1.4 KiB
Makefile
Raw Normal View History

# =====CONFIG=====
SRC_DIR := src
SOURCES != find '$(SRC_DIR)' -iname '*.v'
V_PATH ?= v/v
2022-02-04 13:17:12 +01:00
V := $(V_PATH) -showcc -gc boehm
2022-01-13 12:35:05 +01:00
all: vieter
2022-01-12 18:54:13 +01:00
# =====COMPILATION=====
2022-01-13 12:35:05 +01:00
# Regular binary
vieter: $(SOURCES)
2022-01-13 12:35:05 +01:00
$(V) -g -o vieter $(SRC_DIR)
# Debug build using gcc
.PHONY: debug
debug: dvieter
dvieter: $(SOURCES)
$(V) -keepc -cg -cc gcc -o dvieter $(SRC_DIR)
2022-01-12 18:54:13 +01:00
2022-01-13 12:35:05 +01:00
# Optimised production build
2022-01-12 18:54:13 +01:00
.PHONY: prod
2022-01-13 12:35:05 +01:00
prod: pvieter
pvieter: $(SOURCES)
$(V) -o pvieter -prod $(SRC_DIR)
2022-01-12 18:54:13 +01:00
2022-01-27 21:47:25 +01:00
# Only generate C code
2022-01-12 21:50:17 +01:00
.PHONY: c
c:
$(V) -o vieter.c $(SRC_DIR)
2022-01-12 18:54:13 +01:00
# =====EXECUTION=====
# Run the server in the default 'data' directory
.PHONY: run
2022-01-13 12:35:05 +01:00
run: vieter
2022-02-21 20:40:13 +01:00
VIETER_API_KEY=test \
VIETER_DOWNLOAD_DIR=data/downloads \
VIETER_REPO_DIR=data/repo \
VIETER_PKG_DIR=data/pkgs \
VIETER_LOG_LEVEL=DEBUG \
./vieter server
2022-01-12 21:22:23 +01:00
.PHONY: run-prod
run-prod: prod
2022-02-21 20:40:13 +01:00
VIETER_API_KEY=test \
VIETER_DOWNLOAD_DIR=data/downloads \
VIETER_REPO_DIR=data/repo \
VIETER_PKG_DIR=data/pkgs \
VIETER_LOG_LEVEL=DEBUG \
./pvieter server
2022-01-12 18:54:13 +01:00
# =====OTHER=====
2022-01-13 14:33:06 +01:00
.PHONY: lint
lint:
$(V) fmt -verify $(SRC_DIR)
# Format the V codebase
.PHONY: fmt
fmt:
2022-01-13 14:33:06 +01:00
$(V) fmt -w $(SRC_DIR)
2022-01-09 23:02:55 +01:00
2022-01-14 21:02:34 +01:00
.PHONY: vet
vet:
$(V) vet -W $(SRC_DIR)
# Build & patch the V compiler
.PHONY: v
v: v/v
v/v:
git clone --single-branch --branch patches https://git.rustybever.be/Chewing_Bever/vieter-v v
make -C v
clean:
rm -rf 'data' 'vieter' 'dvieter' 'pvieter' 'vieter.c'