Commit b6c24349 authored by Dietmar Maurer's avatar Dietmar Maurer

really install bootstrap files

parent 2477b89c
...@@ -29,7 +29,7 @@ Open Source License ...@@ -29,7 +29,7 @@ Open Source License
This version of Ext JS is licensed under the terms of the This version of Ext JS is licensed under the terms of the
Open Source GPL 3.0 license. Open Source GPL 3.0 license.
http://www.gnu.org/licenses/gpl.html http://www.gnu.org/licenses/gpl.html (/usr/share/common-licenses/GPL-3)
There are several FLOSS exceptions available for use with this release for There are several FLOSS exceptions available for use with this release for
open source applications that are distributed under a license other than GPL. open source applications that are distributed under a license other than GPL.
......
SUBDIRS = images ext4 css manager SUBDIRS = images ext4 css manager bootstrap
all: ${SUBDIRS} all: ${SUBDIRS}
......
...@@ -3,9 +3,11 @@ include ../../defines.mk ...@@ -3,9 +3,11 @@ include ../../defines.mk
BTDIR=bootstrap-3.1.1-dist BTDIR=bootstrap-3.1.1-dist
BTSRC=${BTDIR}.zip BTSRC=${BTDIR}.zip
BTDATA = \ BTDATA = \
${BTDIR}/css/bootstrap.min.css \ ${BTDIR}/css/bootstrap.min.css \
${BTDIR}/js/bootstrap.min.js ${BTDIR}/css/bootstrap-theme.min.css \
${BTDIR}/js/bootstrap.min.js \
${BTDIR}/fonts/glyphicons-halflings-regular.ttf
${BTDATA}: ${BTSRC} ${BTDATA}: ${BTSRC}
rm -rf ${BTDIR} rm -rf ${BTDIR}
...@@ -18,8 +20,10 @@ all: ${BTDATA} ...@@ -18,8 +20,10 @@ all: ${BTDATA}
install: ${BTDATA} install: ${BTDATA}
install -d ${WWWCSSDIR} 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.min.css ${WWWCSSDIR}
install -m 0644 -o www-data -g www-data ${BTDIR}/css/bootstrap-theme.min.css ${WWWCSSDIR}
install -d ${WWWJSDIR} install -d ${WWWJSDIR}
install -m 0644 -o www-data -g www-data ${BTDIR}/js/bootstrap.min.js ${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: distclean .PHONY: distclean
distclean: clean distclean: clean
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment