hub.sr.ht/Makefile

12 lines
180 B
Makefile

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