summaryrefslogtreecommitdiffstats
path: root/scripts
diff options
context:
space:
mode:
authorEdward Welbourne <edward.welbourne@qt.io>2022-09-07 16:02:22 +0200
committerVolker Hilsheimer <volker.hilsheimer@qt.io>2022-09-14 05:43:19 +0000
commit95d21a6752c11fa63dfc2d2a2292a0c4a2d17ee7 (patch)
tree2c5ee426d922d9a32772e78b28d2ca4faf77382f /scripts
parent7192f441d04b0e001acb296f1382bdc1ff50b155 (diff)
Remove the qmake config now that we no longer need it
At least on Unix, with GNU make installed, we can just use the Makefile. This makes quips.pro and scripts/setup.mk redundant. Task-number: QTWEBSITE-1041 Change-Id: I2c6f5126e5ad6f393f22af893cba692cb2207eed Reviewed-by: Volker Hilsheimer <volker.hilsheimer@qt.io>
Diffstat (limited to 'scripts')
-rw-r--r--scripts/setup.mk21
1 files changed, 0 insertions, 21 deletions
diff --git a/scripts/setup.mk b/scripts/setup.mk
deleted file mode 100644
index 74d088e..0000000
--- a/scripts/setup.mk
+++ /dev/null
@@ -1,21 +0,0 @@
-# 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