Description: Add makefile
 Add a makefile to keep dh_install and friends happy in newer dh versions.
 .
Author: Simon Huggins <huggie@earth.li>

--- /dev/null
+++ htag-0.0.24/Makefile
@@ -0,0 +1,15 @@
+#!/usr/bin/make -f
+
+# Make sure perl is defined, but allow overriding from the command line.
+PERL ?= /usr/bin/perl
+
+pmdir := $(shell $(PERL) -MConfig -e 'if (defined($$Config{installvendorlib})) { print $$Config{installvendorlib} } else { print $$Config{installprivlib} }')
+
+install:
+	mkdir -p debian/tmp/usr/bin
+	cp htag.pl debian/tmp/usr/bin/htag
+	mkdir -p debian/tmp/${pmdir}
+	cp HtagPlugin/HtagPlugin.pm debian/tmp/${pmdir}
+
+clean:
+	rm -rf htag.1 debian/tmp
