More todo

This commit is contained in:
Nico Schottelius 2007-01-27 19:19:11 +01:00
parent 3de1482bf3
commit 6ca7848cf7
3 changed files with 12 additions and 1 deletions

View File

@ -113,7 +113,7 @@ publish-doc: documentation
allclean:
rm -f $(DOC_ALL)
distclean:
distclean: allclean
rm -f $(DOCBDOCS)
#

View File

@ -9,3 +9,5 @@ X join todos
- remove exit-calls
* will leave behind unused temporary file!
* use _exit_err
- replace nico-linux-ccollect with nico-ccollect
* ccollect is not Linux specific

View File

@ -18,6 +18,13 @@ DHOST=nico@home.schottelius.org
DDIR=www/org/schottelius/unix/www/ccollect/
DESTINATION="$DHOST:$DDIR"
# create documentation for the end user
(
cd "$NAME"
make dist
make publish-doc
)
tar cvfj "$TARNAME" \
--exclude=.git \
--exclude="conf/sources/*/destination/*" "$NAME"
@ -29,3 +36,5 @@ ssh "$DHOST" "( cd $DDIR; tar xfj \"$TARNAME\" )"
echo "setting paranoid permissions to public..."
ssh "$DHOST" "( cd $DDIR; find -type d -exec chmod 0755 {} \; )"
ssh "$DHOST" "( cd $DDIR; find -type f -exec chmod 0644 {} \; )"
cat "${NAME}/doc/release-checklist"