]> git.proxmox.com Git - pve-manager.git/commitdiff
remove www/bootstrap completely (now in pve-http-server)
authorDietmar Maurer <dietmar@proxmox.com>
Mon, 16 Jan 2017 09:59:33 +0000 (10:59 +0100)
committerWolfgang Bumiller <w.bumiller@proxmox.com>
Mon, 16 Jan 2017 10:54:33 +0000 (11:54 +0100)
Signed-off-by: Dietmar Maurer <dietmar@proxmox.com>
www/Makefile
www/bootstrap/Makefile [deleted file]

index e3cfca50ab3aba30c6a54aba59048d8177fcbb80..a7a0925e7738abe8f73aaa3faf92be4bfe8cf6c8 100644 (file)
@@ -1,4 +1,4 @@
-SUBDIRS = images ext6 css manager6 bootstrap touch mobile
+SUBDIRS = images ext6 css manager6 touch mobile
 
 all: ${SUBDIRS}
 
diff --git a/www/bootstrap/Makefile b/www/bootstrap/Makefile
deleted file mode 100644 (file)
index 7dd5a23..0000000
+++ /dev/null
@@ -1,31 +0,0 @@
-include ../../defines.mk
-
-BTDIR=bootstrap-3.1.1-dist
-BTSRC=${BTDIR}.zip
-
-BTDATA =                                                       \
-       ${BTDIR}/css/bootstrap.min.css                          \
-       ${BTDIR}/css/bootstrap-theme.min.css                    \
-       ${BTDIR}/js/bootstrap.min.js                            \
-       ${BTDIR}/fonts/glyphicons-halflings-regular.ttf
-
-${BTDATA}: ${BTSRC}
-       rm -rf ${BTDIR}
-       unzip -x ${BTSRC}
-       touch $@
-
-all: ${BTDATA}
-
-.PHONY: install 
-install: ${BTDATA}
-       install -d ${WWWCSSDIR}
-       install -m 0644 -o www-data -g www-data ${BTDIR}/css/bootstrap.min.css ${WWWCSSDIR}
-       install -m 0644 -o www-data -g www-data ${BTDIR}/css/bootstrap-theme.min.css ${WWWCSSDIR}
-       install -d ${WWWJSDIR}
-       install -m 0644 -o www-data -g www-data ${BTDIR}/js/bootstrap.min.js ${WWWJSDIR}
-       install -m 0644 ${BTDIR}/fonts/glyphicons-halflings-regular.ttf ${WWWIMAGEDIR}
-
-.PHONY: clean
-clean:
-       rm -rf *~ ${BTDIR}
-