Rev 14 | Rev 22 | Go to most recent revision | Details | Compare with Previous | Last modification | View Log | RSS feed
| Rev | Author | Line No. | Line |
|---|---|---|---|
| 3 | magnus | 1 | #!/usr/bin/make -f |
| 2 | # debian/rules for freesweep |
||
| 3 | # modifications by Edward Betts <edward@debian.org> |
||
| 4 | # Based on: |
||
| 5 | # Sample debian/rules that uses debhelper. |
||
| 6 | # GNU copyright 1997 to 1999 by Joey Hess. |
||
| 7 | |||
| 8 | # Uncomment this to turn on verbose mode. |
||
| 9 | #export DH_VERBOSE=1 |
||
| 10 | |||
| 21 | magnus | 11 | DEB_HOST_GNU_TYPE ?= $(shell dpkg-architecture -qDEB_HOST_GNU_TYPE) |
| 12 | DEB_BUILD_GNU_TYPE ?= $(shell dpkg-architecture -qDEB_BUILD_GNU_TYPE) |
||
| 3 | magnus | 13 | |
| 21 | magnus | 14 | ifeq ($(DEB_BUILD_GNU_TYPE), $(DEB_HOST_GNU_TYPE)) |
| 15 | buildflags = --build=$(DEB_BUILD_GNU_TYPE) |
||
| 16 | else |
||
| 17 | buildflags = --build=$(DEB_BUILD_GNU_TYPE) --host=$(DEB_HOST_GNU_TYPE) |
||
| 18 | endif |
||
| 19 | |||
| 14 | magnus | 20 | config-stamp: configure |
| 21 | dh_testdir |
||
| 22 | ./configure --host=$(DEB_HOST_GNU_TYPE) --build=$(DEB_BUILD_GNU_TYPE) \ |
||
| 23 | --prefix=/usr \ |
||
| 21 | magnus | 24 | --mandir=\$${prefix}/share/man \ |
| 25 | $(shell dpkg-buildflags --export=configure) |
||
| 14 | magnus | 26 | touch config-stamp |
| 27 | |||
| 3 | magnus | 28 | build: build-stamp |
| 14 | magnus | 29 | build-stamp: config-stamp |
| 3 | magnus | 30 | dh_testdir |
| 31 | |||
| 32 | $(MAKE) |
||
| 33 | |||
| 34 | touch build-stamp |
||
| 35 | |||
| 36 | clean: |
||
| 37 | dh_testdir |
||
| 38 | dh_testroot |
||
| 39 | rm -f build-stamp |
||
| 40 | |||
| 14 | magnus | 41 | [ ! -f Makefile ] || $(MAKE) clean |
| 3 | magnus | 42 | |
| 14 | magnus | 43 | dh_clean config-stamp Makefile config.status config.log config.cache |
| 3 | magnus | 44 | |
| 45 | install: build |
||
| 46 | dh_testdir |
||
| 47 | dh_testroot |
||
| 48 | dh_clean -k |
||
| 49 | |||
| 14 | magnus | 50 | install -m 755 -d $(CURDIR)/debian/x2vnc/usr/share |
| 51 | $(MAKE) DESTDIR=$(CURDIR)/debian/x2vnc install |
||
| 3 | magnus | 52 | |
| 53 | # Build architecture-independent files here. |
||
| 10 | magnus | 54 | binary-indep: |
| 3 | magnus | 55 | # We have nothing to do by default. |
| 56 | |||
| 57 | # Build architecture-dependent files here. |
||
| 58 | binary-arch: build install |
||
| 59 | dh_testdir |
||
| 60 | dh_testroot |
||
| 61 | dh_installdocs |
||
| 62 | dh_installexamples |
||
| 63 | dh_installmenu |
||
| 64 | # dh_installmanpages |
||
| 65 | dh_installchangelogs |
||
| 66 | dh_link |
||
| 67 | dh_strip |
||
| 68 | dh_compress |
||
| 69 | dh_fixperms |
||
| 70 | dh_installdeb |
||
| 71 | dh_shlibdeps |
||
| 72 | dh_gencontrol |
||
| 73 | dh_md5sums |
||
| 74 | dh_builddeb |
||
| 75 | |||
| 76 | binary: binary-indep binary-arch |
||
| 77 | .PHONY: build clean binary-indep binary-arch binary install |