mirror of
git://projects.qi-hardware.com/ben-scans.git
synced 2024-11-22 18:29:21 +02:00
15 lines
284 B
Makefile
15 lines
284 B
Makefile
|
.PHONY: all upload
|
||
|
|
||
|
all: ../index.html
|
||
|
|
||
|
#
|
||
|
# @@@ upload is obsolete, maybe even unnecessary (TBD)
|
||
|
#
|
||
|
|
||
|
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; }
|