Blame


1 aeb03748 2019-01-02 stsp SUBDIR = libexec got tog
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 54415d85 2020-01-15 tracey SUBDIR += gotweb
11 aeb03748 2019-01-02 stsp .endif
12 aeb03748 2019-01-02 stsp
13 53ccebc2 2019-07-30 stsp .include "got-version.mk"
14 53ccebc2 2019-07-30 stsp
15 53ccebc2 2019-07-30 stsp release: clean
16 53ccebc2 2019-07-30 stsp sed -i -e "s/_RELEASE=No/_RELEASE=Yes/" got-version.mk
17 53ccebc2 2019-07-30 stsp ${MAKE} dist
18 53ccebc2 2019-07-30 stsp sed -i -e "s/_RELEASE=Yes/_RELEASE=No/" got-version.mk
19 53ccebc2 2019-07-30 stsp
20 53ccebc2 2019-07-30 stsp dist: clean
21 53ccebc2 2019-07-30 stsp mkdir /tmp/got-${GOT_VERSION}
22 53ccebc2 2019-07-30 stsp pax -rw * /tmp/got-${GOT_VERSION}
23 53ccebc2 2019-07-30 stsp find /tmp/got-${GOT_VERSION} -name obj -type d -delete
24 53ccebc2 2019-07-30 stsp rm /tmp/got-${GOT_VERSION}/got-dist.txt
25 53ccebc2 2019-07-30 stsp tar -C /tmp -zcf got-${GOT_VERSION}.tar.gz got-${GOT_VERSION}
26 53ccebc2 2019-07-30 stsp rm -rf /tmp/got-${GOT_VERSION}
27 53ccebc2 2019-07-30 stsp tar -ztf got-${GOT_VERSION}.tar.gz | sed -e 's/^got-${GOT_VERSION}//' \
28 e4c54b95 2019-08-08 stsp | sort > got-dist.txt.new
29 53ccebc2 2019-07-30 stsp diff -u got-dist.txt got-dist.txt.new
30 53ccebc2 2019-07-30 stsp rm got-dist.txt.new
31 53ccebc2 2019-07-30 stsp
32 2c251c14 2020-01-15 tracey web:
33 bb5b19e3 2020-01-28 stsp ${MAKE} -C gotweb
34 2c251c14 2020-01-15 tracey
35 2c251c14 2020-01-15 tracey web-install:
36 bb5b19e3 2020-01-28 stsp ${MAKE} -C gotweb install
37 2c251c14 2020-01-15 tracey
38 079b2f65 2018-09-08 stsp .include <bsd.subdir.mk>