Blame


1 62fc447c 2023-07-08 jrick 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 ccdddf69 2023-07-23 op .if "${GOT_RELEASE}" != "Yes" || make(clean) || make(obj)
20 62fc447c 2023-07-08 jrick SUBDIR += cvg
21 62fc447c 2023-07-08 jrick .endif
22 62fc447c 2023-07-08 jrick
23 53ccebc2 2019-07-30 stsp release: clean
24 53ccebc2 2019-07-30 stsp sed -i -e "s/_RELEASE=No/_RELEASE=Yes/" got-version.mk
25 53ccebc2 2019-07-30 stsp ${MAKE} dist
26 53ccebc2 2019-07-30 stsp sed -i -e "s/_RELEASE=Yes/_RELEASE=No/" got-version.mk
27 53ccebc2 2019-07-30 stsp
28 53ccebc2 2019-07-30 stsp dist: clean
29 53ccebc2 2019-07-30 stsp mkdir /tmp/got-${GOT_VERSION}
30 53ccebc2 2019-07-30 stsp pax -rw * /tmp/got-${GOT_VERSION}
31 53ccebc2 2019-07-30 stsp find /tmp/got-${GOT_VERSION} -name obj -type d -delete
32 53ccebc2 2019-07-30 stsp rm /tmp/got-${GOT_VERSION}/got-dist.txt
33 53ccebc2 2019-07-30 stsp tar -C /tmp -zcf got-${GOT_VERSION}.tar.gz got-${GOT_VERSION}
34 53ccebc2 2019-07-30 stsp rm -rf /tmp/got-${GOT_VERSION}
35 53ccebc2 2019-07-30 stsp tar -ztf got-${GOT_VERSION}.tar.gz | sed -e 's/^got-${GOT_VERSION}//' \
36 e4c54b95 2019-08-08 stsp | sort > got-dist.txt.new
37 53ccebc2 2019-07-30 stsp diff -u got-dist.txt got-dist.txt.new
38 53ccebc2 2019-07-30 stsp rm got-dist.txt.new
39 53ccebc2 2019-07-30 stsp
40 2c02675e 2022-12-14 op tmpl:
41 2c02675e 2022-12-14 op ${MAKE} -C template
42 2c02675e 2022-12-14 op
43 2c02675e 2022-12-14 op tmpl-regress:
44 2c02675e 2022-12-14 op ${MAKE} -C regress/template
45 2c02675e 2022-12-14 op
46 2c02675e 2022-12-14 op webd: tmpl
47 a596b957 2022-07-14 tracey ${MAKE} -C gotwebd
48 a596b957 2022-07-14 tracey
49 a596b957 2022-07-14 tracey webd-install:
50 a596b957 2022-07-14 tracey ${MAKE} -C gotwebd install
51 a596b957 2022-07-14 tracey
52 13b2bc37 2022-10-23 stsp server:
53 f1752522 2022-10-29 stsp ${MAKE} -C gotctl
54 13b2bc37 2022-10-23 stsp ${MAKE} -C gotd
55 13b2bc37 2022-10-23 stsp ${MAKE} -C gotsh
56 b09c1279 2023-03-28 stsp ${MAKE} -C gitwrapper
57 13b2bc37 2022-10-23 stsp
58 13b2bc37 2022-10-23 stsp server-install:
59 f1752522 2022-10-29 stsp ${MAKE} -C gotctl install
60 13b2bc37 2022-10-23 stsp ${MAKE} -C gotd install
61 13b2bc37 2022-10-23 stsp ${MAKE} -C gotsh install
62 b09c1279 2023-03-28 stsp ${MAKE} -C gitwrapper install
63 13b2bc37 2022-10-23 stsp
64 6ae16afd 2022-10-31 stsp server-regress:
65 6ae16afd 2022-10-31 stsp ${MAKE} -C regress/gotd
66 6ae16afd 2022-10-31 stsp
67 079b2f65 2018-09-08 stsp .include <bsd.subdir.mk>