1 aeb03748 2019-01-02 stsp SUBDIR = libexec got tog
3 33147df7 2020-01-07 semarie .PHONY: release dist
5 c8d81600 2019-08-08 stsp .if make(regress) || make(obj) || make(clean) || make(release)
6 54415d85 2020-01-15 tracey SUBDIR += regress
7 54415d85 2020-01-15 tracey # not part of original SUBDIR, since we don't build gotweb by default and
8 54415d85 2020-01-15 tracey # the port will be split into sub packages
9 54415d85 2020-01-15 tracey SUBDIR += gotweb
12 53ccebc2 2019-07-30 stsp .include "got-version.mk"
14 53ccebc2 2019-07-30 stsp release: clean
15 53ccebc2 2019-07-30 stsp sed -i -e "s/_RELEASE=No/_RELEASE=Yes/" got-version.mk
16 53ccebc2 2019-07-30 stsp ${MAKE} dist
17 53ccebc2 2019-07-30 stsp sed -i -e "s/_RELEASE=Yes/_RELEASE=No/" got-version.mk
20 53ccebc2 2019-07-30 stsp mkdir /tmp/got-${GOT_VERSION}
21 53ccebc2 2019-07-30 stsp pax -rw * /tmp/got-${GOT_VERSION}
22 53ccebc2 2019-07-30 stsp find /tmp/got-${GOT_VERSION} -name obj -type d -delete
23 53ccebc2 2019-07-30 stsp rm /tmp/got-${GOT_VERSION}/got-dist.txt
24 53ccebc2 2019-07-30 stsp tar -C /tmp -zcf got-${GOT_VERSION}.tar.gz got-${GOT_VERSION}
25 53ccebc2 2019-07-30 stsp rm -rf /tmp/got-${GOT_VERSION}
26 53ccebc2 2019-07-30 stsp tar -ztf got-${GOT_VERSION}.tar.gz | sed -e 's/^got-${GOT_VERSION}//' \
27 e4c54b95 2019-08-08 stsp | sort > got-dist.txt.new
28 53ccebc2 2019-07-30 stsp diff -u got-dist.txt got-dist.txt.new
29 53ccebc2 2019-07-30 stsp rm got-dist.txt.new
32 54415d85 2020-01-15 tracey ${MAKE} -C gotweb MAKEWEB=Yes
34 2c251c14 2020-01-15 tracey web-install:
35 54415d85 2020-01-15 tracey ${MAKE} -C gotweb install MAKEWEB=Yes
37 079b2f65 2018-09-08 stsp .include <bsd.subdir.mk>