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

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

export PLUGIN_NAME="jquery-simpleTreeMenu"

%:
	dh $@ 

override_dh_auto_build:
	uglifyjs -o ${PLUGIN_NAME}.min.js ${PLUGIN_NAME}.js

override_dh_auto_clean:
	rm -f *.min.js
	dh_auto_clean

override_dh_installchangelogs:
	dh_installchangelogs debian/upstream-changelog
