0
0
mirror of https://git.sr.ht/~sircmpwn/builds.sr.ht synced 2023-04-22 17:55:48 +00:00
builds.sr.ht/Makefile
2023-03-22 11:04:21 +01:00

16 lines
261 B
Makefile

SRHT_PATH?=/usr/lib/python3.10/site-packages/srht
MODULE=buildsrht/
include ${SRHT_PATH}/Makefile
all: api worker
api:
cd api && go generate ./loaders
cd api && go generate ./graph
cd api && go build
worker:
cd worker && go build
.PHONY: all api worker