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

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

%:
	dh $@

override_dh_auto_clean:
	if [ -e debian/code.js ]; then \
		rm lib/code.js; \
		mv -f debian/code.js lib/code.js; \
	fi
	dh_auto_clean --buildsystem=nodejs
