Mercurial > wikked
view Makefile @ 64:0b4f4c23770a
Removed specific "include"-related properties from the code and DB.
(they can already be accessed via the meta)
Fixed a bug with handling includes in queries.
Better code in some places in the formatter.
author | Ludovic Chabant <ludovic@chabant.com> |
---|---|
date | Thu, 07 Feb 2013 22:34:13 -0800 |
parents | 97efd73f2158 |
children |
line wrap: on
line source
WIKKED_LESS = ./static/css/wikked.less WIKKED_CSS = ./static/css/wikked.min.css REQUIREJS_BUILD = ./static/.rbuild.js DATE=$(shell date +%I:%M%p) CHECK=\033[32m✔\033[39m build: @echo "" @echo "Building Wikked..." @echo "" @recess --compile --compress ${WIKKED_LESS} > ${WIKKED_CSS} @echo "Compiling LESS stylesheets... ${CHECK} Done" @r.js -o ${REQUIREJS_BUILD} @echo "Compiling Javascript code... ${CHECK} Done" @echo "" @echo "Successfully compiled Wikked." @echo "" clean: rm ${WIKKED_CSS} watch: recess ${WIKKED_LESS}:${WIKKED_CSS} --watch