Blame


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