2002-01-16 21:43:58 +00:00
|
|
|
#!/usr/bin/make -f
|
|
|
|
|
2004-01-11 07:27:27 +00:00
|
|
|
PACKAGE=isync
|
|
|
|
|
2004-01-11 06:35:10 +00:00
|
|
|
CFLAGS = -Wall -g
|
|
|
|
ifneq (,$(findstring noopt,$(DEB_BUILD_OPTIONS)))
|
|
|
|
CFLAGS += -O0
|
|
|
|
else
|
|
|
|
CFLAGS += -O2
|
|
|
|
endif
|
|
|
|
|
2004-01-11 08:08:37 +00:00
|
|
|
DEB_HOST_GNU_TYPE := $(shell dpkg-architecture -qDEB_HOST_GNU_TYPE)
|
|
|
|
DEB_BUILD_GNU_TYPE := $(shell dpkg-architecture -qDEB_BUILD_GNU_TYPE)
|
|
|
|
|
2002-01-16 21:43:58 +00:00
|
|
|
build: build-stamp
|
2004-01-11 07:27:27 +00:00
|
|
|
build-stamp: patch-stamp
|
2002-01-16 21:43:58 +00:00
|
|
|
dh_testdir
|
2004-01-27 01:24:48 +00:00
|
|
|
./configure --disable-maintainer-mode --build=$(DEB_BUILD_GNU_TYPE) --host=$(DEB_HOST_GNU_TYPE) --prefix=/usr --mandir=/usr/share/man
|
2004-01-11 06:35:10 +00:00
|
|
|
$(MAKE) CFLAGS="$(CFLAGS)"
|
2002-01-16 21:43:58 +00:00
|
|
|
touch build-stamp
|
|
|
|
|
2004-01-11 07:27:27 +00:00
|
|
|
clean: clean1 unpatch
|
|
|
|
clean1:
|
2002-01-16 21:43:58 +00:00
|
|
|
dh_testdir
|
|
|
|
dh_testroot
|
2003-03-26 03:33:15 +00:00
|
|
|
rm -f build-stamp
|
2002-01-16 21:43:58 +00:00
|
|
|
-$(MAKE) distclean
|
2003-03-26 03:33:15 +00:00
|
|
|
dh_clean Makefile config.log config.status
|
2002-01-16 21:43:58 +00:00
|
|
|
|
|
|
|
install: build
|
|
|
|
dh_testdir
|
|
|
|
dh_testroot
|
|
|
|
dh_clean -k
|
2003-03-26 03:33:15 +00:00
|
|
|
dh_installdirs usr/bin usr/share/man/man1
|
|
|
|
$(MAKE) DESTDIR=$(CURDIR)/debian/isync install
|
2002-01-16 21:43:58 +00:00
|
|
|
|
|
|
|
binary-indep: build install
|
|
|
|
|
|
|
|
binary-arch: build install
|
|
|
|
dh_testdir
|
|
|
|
dh_testroot
|
|
|
|
dh_installchangelogs ChangeLog
|
2003-03-26 03:33:15 +00:00
|
|
|
dh_installdocs AUTHORS NEWS README TODO
|
2004-03-27 16:07:20 +00:00
|
|
|
dh_installexamples src/mbsyncrc.sample src/compat/isyncrc.sample
|
2003-03-26 03:33:15 +00:00
|
|
|
dh_installman
|
2002-01-16 21:43:58 +00:00
|
|
|
dh_strip
|
|
|
|
dh_compress
|
|
|
|
dh_fixperms
|
|
|
|
dh_installdeb
|
|
|
|
dh_shlibdeps
|
|
|
|
dh_gencontrol
|
|
|
|
dh_md5sums
|
|
|
|
dh_builddeb
|
|
|
|
|
|
|
|
binary: binary-indep binary-arch
|
2004-01-11 07:27:27 +00:00
|
|
|
.PHONY: build clean binary-indep binary-arch binary install clean1
|
|
|
|
|
|
|
|
include /usr/share/dpatch/dpatch.make
|