mirror of
				https://github.com/troglobit/editline.git
				synced 2025-11-04 11:18:07 +08:00 
			
		
		
		
	
		
			
				
	
	
		
			60 lines
		
	
	
		
			1017 B
		
	
	
	
		
			Makefile
		
	
	
		
			Executable File
		
	
	
	
	
			
		
		
	
	
			60 lines
		
	
	
		
			1017 B
		
	
	
	
		
			Makefile
		
	
	
		
			Executable File
		
	
	
	
	
#!/usr/bin/make -f
 | 
						|
# debian/rules for libeditline
 | 
						|
# GNU copyright 1997 to 1999 by Joey Hess.
 | 
						|
 | 
						|
# Uncomment this to turn on verbose mode.
 | 
						|
#export DH_VERBOSE=1
 | 
						|
 | 
						|
# shared library versions, option 1
 | 
						|
version=0.0.0
 | 
						|
major=0
 | 
						|
 | 
						|
configure: configure-stamp
 | 
						|
configure-stamp:
 | 
						|
	dh_testdir
 | 
						|
	dh_auto_configure
 | 
						|
	touch configure-stamp
 | 
						|
 | 
						|
build: build-stamp
 | 
						|
build-stamp:
 | 
						|
	dh_testdir
 | 
						|
	dh_auto_configure
 | 
						|
	dh_auto_build
 | 
						|
	touch $@
 | 
						|
 | 
						|
clean:
 | 
						|
	dh_testdir
 | 
						|
	dh_auto_clean
 | 
						|
	dh_clean
 | 
						|
	@rm -f build-stamp configure-stamp
 | 
						|
 | 
						|
install: build
 | 
						|
	dh_testdir
 | 
						|
	dh_testroot
 | 
						|
	dh_clean -k
 | 
						|
	dh_installdirs
 | 
						|
	dh_auto_install
 | 
						|
 | 
						|
binary-indep: install
 | 
						|
 | 
						|
# build libeditline${major} package by moving files from editline-dev
 | 
						|
binary-arch: install
 | 
						|
	dh_testdir
 | 
						|
	dh_testroot
 | 
						|
	dh_auto_install
 | 
						|
	dh_install --sourcedir=debian/tmp
 | 
						|
	dh_installdocs
 | 
						|
	dh_installchangelogs 
 | 
						|
	dh_strip
 | 
						|
	dh_compress
 | 
						|
	dh_fixperms
 | 
						|
	dh_makeshlibs
 | 
						|
	dh_installdeb
 | 
						|
	dh_shlibdeps
 | 
						|
	dh_gencontrol
 | 
						|
	dh_md5sums
 | 
						|
	dh_builddeb
 | 
						|
 | 
						|
binary: binary-indep binary-arch
 | 
						|
.PHONY: build clean binary-indep binary-arch binary install
 |