mirror of
git://projects.qi-hardware.com/ben-scans.git
synced 2024-11-22 07:14:59 +02:00
c7468bda69
Assorted cleanup. - web/Makefile: added index upload to downloads.qi-hardware.com - web/index.sh, index.html: a <P> got abbreviated to just < - data/jpg/ben-dispshell-inside-100um.jpg: image was a uncropped screenshot, oops !
20 lines
484 B
Makefile
20 lines
484 B
Makefile
.PHONY: all upload ../test.html ../index.html
|
|
|
|
all: ../test.html
|
|
|
|
#
|
|
# remove once a better place for index.html has been found
|
|
#
|
|
|
|
upload: ../index.html
|
|
rsync -v --progress $< \
|
|
werner@host:/home/httpd/almesberger/misc/ben/scan/
|
|
rsync -v --progress $< \
|
|
www-data@downloads.qi-hardware.com:werner/ben-scans/
|
|
|
|
../index.html: style.sh index.sh
|
|
. ./index.sh >$@ || { rm -f $@; exit 1; }
|
|
|
|
../test.html: style.sh index.sh
|
|
BASE=./ . ./index.sh >$@ || { rm -f $@; exit 1; }
|