#!/usr/bin/make -f
# -*- makefile -*-
# debian/rules file for trimmomatic
# Andreas Tille <tille@debian.org>
# GPL

%:
	dh $@ --with javahelper

override_dh_auto_build:
	cp debian/MANIFEST.MF .
	if [ ! -d dist/unpack ]; then mkdir -p dist/unpack; fi
	touch dist/unpack/LICENCE
	touch dist/unpack/AUTHORS
	ant

override_dh_clean:
	rm -f MANIFEST.MF
	dh_clean

override_dh_compress:
	dh_compress --exclude=batchTrim
