Bochs/sfsite/Makefile

31 lines
745 B
Makefile
Raw Normal View History

###################################################################
# Makefile
# $Id: Makefile,v 1.4 2001-06-17 13:32:16 bdenney Exp $
#
# Runs a cvs update on the source forge shell account.
# This will only work if you are a developer on the Bochs
# project, and have set up secure shell correctly.
#
###################################################################
SSH=ssh -x
REMOTE_HOST=shell.sf.net
BOCHS_PATH=/home/groups/b/bo/bochs
HTDOCS=$(BOCHS_PATH)/htdocs
2001-06-17 09:25:56 +04:00
remote_update::
if test "`whoami`" = bryce; then sfuser=bdenney; \
else sfuser=`whoami`; fi; \
$(SSH) $$sfuser@$(REMOTE_HOST) "cd $(HTDOCS) && cvs update -Ad"
2001-06-17 09:25:56 +04:00
do_commit::
cvs commit
commit:: update do_commit remote_update
2001-06-17 09:30:52 +04:00
update::
cvs update -A -d
diff:
cvs diff