diff --git a/www/Makefile b/www/Makefile index e3cfca50..a7a0925e 100644 --- a/www/Makefile +++ b/www/Makefile @@ -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 index 7dd5a23f..00000000 --- a/www/bootstrap/Makefile +++ /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} -