-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathrelease.in
More file actions
18 lines (17 loc) · 783 Bytes
/
Copy pathrelease.in
File metadata and controls
18 lines (17 loc) · 783 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
# This file is used to create snapshots of the Covered tool. It is used by
# my home-brewed release script. Please add any commands that need
# to be executed prior to creating a tarball, one command per line.
#
# All directories within the project will have the CVS directory removed as
# well as this file before tarball'ing.
rm -rf ./doc/htdocs
rm -rf ./doc/manstyle
rm -rf ./src/vpi
rm -rf ./covered.spec
chmod 755 install-sh
./configure
if test -n `which doxygen`; then cd ./doc; make devel_doc; cd devel/html; tar cvlf ../../../../devel.tar *; gzip ../../../../devel.tar; cd ../..; make clean devel_doc_clean; fi
cd ./doc/html; tar cvlf ../../../user.tar *; gzip ../../../user.tar
tar cvlf ../covered-diags.tar diags; gzip ../covered-diags.tar
rm -rf ./diags
make distclean