#!/usr/bin/make -f

build:
	dh_testdir

install:
	dh_testroot
	dh_installdirs
	cp ls $(CURDIR)/debian/tmp/bin
	cp libBrokenLocale-2.3.2.so $(CURDIR)/debian/tmp/lib

clean:
	$(RM) -r $(CURDIR)/debian/tmp

binary: build install
	dh_installchangelogs
	dh_fixperms
	dh_installdeb
	dh_gencontrol
	dh_builddeb

