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

# Uncomment this to turn on verbose mode.
#export DH_VERBOSE=1
include /usr/share/dpkg/default.mk
export NODE_PATH = debian/node_modules:$(CURDIR)
TMP=debian/tmp/usr/share/nodejs/autoprefixer

%:
	dh $@

override_dh_auto_build:
	cd autoprefixer-rails/build && \
		mkdir -p node_modules && \
		ln -s /usr/share/nodejs/postcss node_modules && \
		ln -s /usr/share/nodejs/rollup-plugin-node-polyfills node_modules && \
		rollup -c

override_dh_auto_test:
