Blame


1 20662ea0 2021-04-10 stsp SUBDIR = libexec got tog gotadmin
2 079b2f65 2018-09-08 stsp
3 33147df7 2020-01-07 semarie .PHONY: release dist
4 33147df7 2020-01-07 semarie
5 c8d81600 2019-08-08 stsp .if make(regress) || make(obj) || make(clean) || make(release)
6 54415d85 2020-01-15 tracey SUBDIR += regress
7 c08369d7 2020-01-15 tracey .endif
8 c08369d7 2020-01-15 tracey
9 db914e36 2020-02-13 stsp .if make(clean) || make(obj) || make(release)
10 b09c1279 2023-03-28 stsp SUBDIR += gotwebd gotd gotsh gotctl template gitwrapper
11 aeb03748 2019-01-02 stsp .endif
12 aeb03748 2019-01-02 stsp
13 fbceed27 2021-10-07 kn .if make(tags) || make(cleandir)
14 fbceed27 2021-10-07 kn SUBDIR += lib
15 fbceed27 2021-10-07 kn .endif
16 fbceed27 2021-10-07 kn
17 53ccebc2 2019-07-30 stsp .include "got-version.mk"
18 53ccebc2 2019-07-30 stsp
19 53ccebc2 2019-07-30 stsp release: clean
20 53ccebc2 2019-07-30 stsp sed -i -e "s/_RELEASE=No/_RELEASE=Yes/" got-version.mk
21 53ccebc2 2019-07-30 stsp ${MAKE} dist
22 53ccebc2 2019-07-30 stsp sed -i -e "s/_RELEASE=Yes/_RELEASE=No/" got-version.mk
23 53ccebc2 2019-07-30 stsp
24 53ccebc2 2019-07-30 stsp dist: clean
25 53ccebc2 2019-07-30 stsp mkdir /tmp/got-${GOT_VERSION}
26 53ccebc2 2019-07-30 stsp pax -rw * /tmp/got-${GOT_VERSION}
27 53ccebc2 2019-07-30 stsp find /tmp/got-${GOT_VERSION} -name obj -type d -delete
28 53ccebc2 2019-07-30 stsp rm /tmp/got-${GOT_VERSION}/got-dist.txt
29 53ccebc2 2019-07-30 stsp tar -C /tmp -zcf got-${GOT_VERSION}.tar.gz got-${GOT_VERSION}
30 53ccebc2 2019-07-30 stsp rm -rf /tmp/got-${GOT_VERSION}
31 53ccebc2 2019-07-30 stsp tar -ztf got-${GOT_VERSION}.tar.gz | sed -e 's/^got-${GOT_VERSION}//' \
32 e4c54b95 2019-08-08 stsp | sort > got-dist.txt.new
33 53ccebc2 2019-07-30 stsp diff -u got-dist.txt got-dist.txt.new
34 53ccebc2 2019-07-30 stsp rm got-dist.txt.new
35 53ccebc2 2019-07-30 stsp
36 2c02675e 2022-12-14 op tmpl:
37 2c02675e 2022-12-14 op ${MAKE} -C template
38 2c02675e 2022-12-14 op
39 2c02675e 2022-12-14 op tmpl-regress:
40 2c02675e 2022-12-14 op ${MAKE} -C regress/template
41 2c02675e 2022-12-14 op
42 2c02675e 2022-12-14 op webd: tmpl
43 a596b957 2022-07-14 tracey ${MAKE} -C gotwebd
44 a596b957 2022-07-14 tracey
45 a596b957 2022-07-14 tracey webd-install:
46 a596b957 2022-07-14 tracey ${MAKE} -C gotwebd install
47 a596b957 2022-07-14 tracey
48 13b2bc37 2022-10-23 stsp server:
49 f1752522 2022-10-29 stsp ${MAKE} -C gotctl
50 13b2bc37 2022-10-23 stsp ${MAKE} -C gotd
51 13b2bc37 2022-10-23 stsp ${MAKE} -C gotsh
52 b09c1279 2023-03-28 stsp ${MAKE} -C gitwrapper
53 13b2bc37 2022-10-23 stsp
54 13b2bc37 2022-10-23 stsp server-install:
55 f1752522 2022-10-29 stsp ${MAKE} -C gotctl install
56 13b2bc37 2022-10-23 stsp ${MAKE} -C gotd install
57 13b2bc37 2022-10-23 stsp ${MAKE} -C gotsh install
58 b09c1279 2023-03-28 stsp ${MAKE} -C gitwrapper install
59 13b2bc37 2022-10-23 stsp
60 6ae16afd 2022-10-31 stsp server-regress:
61 6ae16afd 2022-10-31 stsp ${MAKE} -C regress/gotd
62 6ae16afd 2022-10-31 stsp
63 079b2f65 2018-09-08 stsp .include <bsd.subdir.mk>