38 lines
		
	
	
		
			556 B
		
	
	
	
		
			Makefile
		
	
	
		
			Executable File
		
	
	
	
	
			
		
		
	
	
			38 lines
		
	
	
		
			556 B
		
	
	
	
		
			Makefile
		
	
	
		
			Executable File
		
	
	
	
	
| #!/usr/bin/make -f
 | |
| 
 | |
| build: build-stamp
 | |
| build-stamp:
 | |
| 	dh_testdir
 | |
| 	touch build-stamp
 | |
| 
 | |
| clean:
 | |
| 	dh_testdir
 | |
| 	dh_testroot
 | |
| 	rm -f build-stamp
 | |
| 	dh_clean
 | |
| 
 | |
| install: build
 | |
| 	dh_testdir
 | |
| 	dh_testroot
 | |
| 	dh_prep
 | |
| 	dh_installdirs
 | |
| 	$(MAKE) DESTDIR=$(CURDIR)/debian/tmp
 | |
| 	dh_install
 | |
| 
 | |
| binary-indep: build install
 | |
| 	dh_testdir
 | |
| 	dh_testroot
 | |
| 	dh_installchangelogs
 | |
| 	dh_installdocs
 | |
| 	dh_compress
 | |
| 	dh_fixperms
 | |
| 	dh_installdeb
 | |
| 	dh_gencontrol
 | |
| 	dh_md5sums
 | |
| 	dh_builddeb
 | |
| 
 | |
| binary-arch: build install
 | |
| 
 | |
| binary: binary-indep binary-arch
 | |
| .PHONY: build clean binary-indep binary-arch binary install
 |