mirror of
git://projects.qi-hardware.com/ben-scans.git
synced 2024-11-22 14:35:55 +02:00
8013711504
the moment, so we keep the old page on www.almesberger.net for now. - web/style.sh (BASE): introduced URL prefix - web/Makefile: upload only index.html to www.almesberger.net - index.html: regenerated, for consistency (it currently doesn't serve any purpose)
15 lines
289 B
Makefile
15 lines
289 B
Makefile
.PHONY: all upload
|
|
|
|
all: ../index.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/
|
|
|
|
../index.html: style.sh index.sh
|
|
. ./index.sh >$@ || { rm -f $@; exit 1; }
|