cc-backend/Makefile

79 lines
1.8 KiB
Makefile
Raw Normal View History

2022-09-26 11:22:34 +02:00
TARGET = ./cc-backend
VAR = ./var
2023-05-11 09:39:23 +02:00
CFG = config.json .env
2022-09-26 11:22:34 +02:00
FRONTEND = ./web/frontend
2023-09-15 15:59:54 +02:00
VERSION = 1.2.2
GIT_HASH := $(shell git rev-parse --short HEAD || echo 'development')
CURRENT_TIME = $(shell date +"%Y-%m-%d:T%H:%M:%S")
2023-06-16 14:31:09 +02:00
LD_FLAGS = '-s -X main.date=${CURRENT_TIME} -X main.version=${VERSION} -X main.commit=${GIT_HASH}'
2022-09-26 11:22:34 +02:00
EXECUTABLES = go npm
K := $(foreach exec,$(EXECUTABLES),\
$(if $(shell which $(exec)),some string,$(error "No $(exec) in PATH")))
2022-09-26 11:22:34 +02:00
SVELTE_COMPONENTS = status \
analysis \
node \
systems \
job \
list \
user \
jobs \
header
SVELTE_TARGETS = $(addprefix $(FRONTEND)/public/build/,$(addsuffix .js, $(SVELTE_COMPONENTS)))
SVELTE_SRC = $(wildcard $(FRONTEND)/src/*.svelte) \
$(wildcard $(FRONTEND)/src/*.js) \
$(wildcard $(FRONTEND)/src/filters/*.svelte) \
$(wildcard $(FRONTEND)/src/plots/*.svelte) \
$(wildcard $(FRONTEND)/src/joblist/*.svelte)
2023-07-19 09:04:46 +02:00
.PHONY: clean distclean test tags frontend $(TARGET)
2022-09-26 11:22:34 +02:00
.NOTPARALLEL:
2023-05-11 09:39:23 +02:00
$(TARGET): $(VAR) $(CFG) $(SVELTE_TARGETS)
2022-09-26 11:22:34 +02:00
$(info ===> BUILD cc-backend)
@go build -ldflags=${LD_FLAGS} ./cmd/cc-backend
2022-09-26 11:22:34 +02:00
2023-06-20 07:55:57 +02:00
frontend:
$(info ===> BUILD frontend)
cd web/frontend && npm install && npm run build
2022-09-26 11:22:34 +02:00
clean:
$(info ===> CLEAN)
@go clean
@rm -f $(TARGET)
distclean:
@$(MAKE) clean
$(info ===> DISTCLEAN)
@rm -rf $(FRONTEND)/node_modules
@rm -rf $(VAR)
2022-09-26 11:22:34 +02:00
test:
$(info ===> TESTING)
@go clean -testcache
2022-09-26 11:22:34 +02:00
@go build ./...
@go vet ./...
@go test ./...
2023-03-02 14:11:06 +01:00
tags:
$(info ===> TAGS)
@ctags -R
2022-09-26 11:22:34 +02:00
$(VAR):
@mkdir $(VAR)
2023-05-11 09:39:23 +02:00
config.json:
$(info ===> Initialize config.json file)
@cp configs/config.json config.json
.env:
$(info ===> Initialize .env file)
@cp configs/env-template.txt .env
$(SVELTE_TARGETS): $(SVELTE_SRC)
$(info ===> BUILD frontend)
2023-05-11 09:39:23 +02:00
cd web/frontend && npm install && npm run build