mirror of
https://github.com/GothenburgBitFactory/taskwarrior.git
synced 2025-06-26 10:54:26 +02:00

- Updated the copyright notices to 2010, for the 1.9.0 release. - added "unmaintained" comment to zsh completion script asking for contributions
47 lines
882 B
Makefile
Executable file
47 lines
882 B
Makefile
Executable file
#!/usr/bin/make -f
|
|
|
|
config.status: configure
|
|
dh_testdir
|
|
./configure $(CROSS) --prefix=/usr --docdir=$(DATADIR)/doc/task
|
|
|
|
build: build-stamp
|
|
|
|
build-stamp: config.status
|
|
dh_testdir
|
|
$(MAKE)
|
|
touch $@
|
|
|
|
clean:
|
|
dh_testdir
|
|
dh_testroot
|
|
[ ! -f Makefile ] || $(MAKE) distclean
|
|
dh_clean
|
|
|
|
install: build
|
|
dh_testdir
|
|
dh_testroot
|
|
dh_prep
|
|
$(MAKE) DESTDIR=$(CURDIR)/debian/task install
|
|
|
|
binary-indep: install
|
|
|
|
binary-arch: install
|
|
dh_testdir
|
|
dh_testroot
|
|
dh_installchangelogs
|
|
dh_installdocs
|
|
dh_installman
|
|
dh_installexamples
|
|
install -D -m644 scripts/bash/task_completion.sh $(CURDIR)/debian/task/etc/bash_completion.d/task
|
|
rm -rf $(CURDIR)/debian/task/usr/share/doc/task-1.8.5
|
|
dh_strip
|
|
dh_compress
|
|
dh_fixperms
|
|
dh_installdeb
|
|
dh_shlibdeps
|
|
dh_gencontrol
|
|
dh_md5sums
|
|
dh_builddeb
|
|
|
|
binary: binary-indep binary-arch
|
|
.PHONY: build clean binary-indep binary-arch binary install
|