~edwargix/git.sr.ht

ref: 163edba4015947670d934ad1590dad1fb86f1104 git.sr.ht/Makefile -rw-r--r-- 540 bytes
163edba4 — Simon Ser gitsrht-update-hook: include branch name in job tags 3 years ago
                                                                                
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
SRHT_PATH?=/usr/lib/python3.9/site-packages/srht
MODULE=gitsrht/
include ${SRHT_PATH}/Makefile

all: api gitsrht-dispatch gitsrht-keys gitsrht-shell gitsrht-update-hook

api:
	cd api && go generate ./loaders
	cd api && go generate ./graph
	cd api && go build

gitsrht-dispatch:
	cd gitsrht-dispatch && go build

gitsrht-keys:
	cd gitsrht-keys && go build

gitsrht-shell:
	cd gitsrht-shell && go build

gitsrht-update-hook:
	cd gitsrht-update-hook && go build

.PHONY: all api gitsrht-dispatch gitsrht-keys gitsrht-shell gitsrht-update-hook