#!/usr/bin/make -f
# -*- makefile -*-

# Uncomment this to turn on verbose mode.
#export DH_VERBOSE=1

%:
	dh $@

override_dh_auto_build:
	ln -s /usr/share/javascript/jquery libs/
	mkdir node_modules
	ln -s `nodepath grunt-contrib-clean` node_modules/
	ln -s `nodepath grunt-contrib-concat` node_modules/
	ln -s `nodepath grunt-contrib-uglify` node_modules/
	grunt
	rm -rf node_modules
