From: Hans U. N. <hu...@us...> - 2005-06-19 22:23:10
|
Update of /cvsroot/libexif/libexif-website In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv6553 Added Files: Makefile Log Message: add libexif website to CVS --- NEW FILE: Makefile --- .PHONY: all all: @echo "Nothing to build." .PHONY: upload upload: upload-static.stamp upload-static.stamp: static $(wildcard static/*.html static/*.css static/*.png static/*.jpg) Makefile find static \( -type d -exec chmod a+rx,go-w,g+s {} \; \) \ -or \( -type f -exec chmod a+r {} \; \) rsync -avz --progress --exclude="CVS" static/* sf:/home/users/h/hu/hun/libexif/htdocs/ ssh "sf" "find /home/groups/l/li/libexif/htdocs \( -type d -exec chgrp libexif {} \; -exec chmod g+rwxs,a+rx {} \; \) -or \( -type f -exec chgrp libexif {} \; -exec chmod g+rw {} \; \( -name '*.html' -or -name '*.png' -or -name '*.php' -or -name '*.jpg' -or -name '*.css' -name '*.dot' -name '*.map' \) -exec chmod a+r {} \; \)" date > $@ |