summaryrefslogtreecommitdiffstats
path: root/scripts/setup.mk
blob: 74d088e9154958a026de88d42905f62f473eb661 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
# Make-file for quips.pro to delegate to as:
# make SRC=$$PWD setup
default: setup
WEB = $(SRC)/planetqt/website

html:
	mkdir -p html

WEBDIRS = images
$(WEBDIRS:%=html/%): html/%: html
	[ -d $@ ] || ln -sf $(WEB)/images $(@D)

WEBFILES = favicon.ico \
	online.css style.css \
	main.js extras.js modernizr.custom.84855.js \
	cookie_small.png cookiebar-x.png list_arrow.png theqtcompany.png
$(WEBFILES:%=html/%): html/%: html
	[ -f $@ ] || ln -sf $(WEB)/$(@F) $(@D)

setup: $(WEBFILES:%=html/%) $(WEBDIRS:%=html/%)
	touch html/.ready