summaryrefslogtreecommitdiff
path: root/Makefile.am
blob: 552f9b8b7831ba02b1ef96c34eb4d07ce2138cba (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
AUTOMAKE_OPTIONS = foreign

SUBDIRS = debian.upstream src

# Extra clean files so that maintainer-clean removes *everything*
MAINTAINERCLEANFILES = \
	aclocal.m4 compile config.guess config.sub \
	configure depcomp install-sh ltmain.sh     \
	Makefile.in missing

DEB_BUILDDIR = debian.build

deb:
	@[ -d debian ] || ln -s debian.upstream debian
	dpkg-buildpackage -rfakeroot -uc -us

deb.upstream: dist
	-mkdir -p $(DEB_BUILDDIR)
	cd $(DEB_BUILDDIR)				&& \
	rm -rf $(PACKAGE)-$(VERSION)			&& \
	tar zxvf ../$(PACKAGE)-$(VERSION).tar.gz	&& \
	cd $(PACKAGE)-$(VERSION)			&& \
	$(MAKE) deb -f Makefile.am