| 
									
										
										
										
											2009-06-14 20:17:10 +02:00
										 |  |  | #!/usr/bin/make -f | 
					
						
							| 
									
										
										
										
											2010-08-11 19:23:24 +02:00
										 |  |  | # debian/rules for libeditline | 
					
						
							| 
									
										
										
										
											2009-06-14 20:17:10 +02:00
										 |  |  | # 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 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-01-06 10:40:29 +01:00
										 |  |  | configure: configure-stamp | 
					
						
							|  |  |  | configure-stamp: | 
					
						
							|  |  |  | 	dh_testdir | 
					
						
							|  |  |  | 	dh_auto_configure | 
					
						
							|  |  |  | 	touch configure-stamp | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-06-14 20:17:10 +02:00
										 |  |  | build: build-stamp | 
					
						
							|  |  |  | build-stamp: | 
					
						
							|  |  |  | 	dh_testdir | 
					
						
							| 
									
										
										
										
											2010-08-11 19:23:24 +02:00
										 |  |  | 	dh_auto_configure | 
					
						
							|  |  |  | 	dh_auto_build | 
					
						
							| 
									
										
										
										
											2011-01-06 10:40:29 +01:00
										 |  |  | 	touch $@ | 
					
						
							| 
									
										
										
										
											2009-06-14 20:17:10 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  | clean: | 
					
						
							|  |  |  | 	dh_testdir | 
					
						
							| 
									
										
										
										
											2010-08-11 19:23:24 +02:00
										 |  |  | 	dh_auto_clean | 
					
						
							| 
									
										
										
										
											2009-06-14 20:17:10 +02:00
										 |  |  | 	dh_clean | 
					
						
							| 
									
										
										
										
											2011-01-06 10:40:29 +01:00
										 |  |  | 	@rm -f build-stamp configure-stamp | 
					
						
							| 
									
										
										
										
											2009-06-14 20:17:10 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  | install: build | 
					
						
							|  |  |  | 	dh_testdir | 
					
						
							|  |  |  | 	dh_testroot | 
					
						
							|  |  |  | 	dh_clean -k | 
					
						
							|  |  |  | 	dh_installdirs | 
					
						
							| 
									
										
										
										
											2010-08-11 19:23:24 +02:00
										 |  |  | 	dh_auto_install | 
					
						
							| 
									
										
										
										
											2009-06-14 20:17:10 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-08-11 19:23:24 +02:00
										 |  |  | binary-indep: install | 
					
						
							| 
									
										
										
										
											2009-06-14 20:17:10 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-08-11 19:23:24 +02:00
										 |  |  | # build libeditline${major} package by moving files from editline-dev | 
					
						
							|  |  |  | binary-arch: install | 
					
						
							| 
									
										
										
										
											2009-06-14 20:17:10 +02:00
										 |  |  | 	dh_testdir | 
					
						
							|  |  |  | 	dh_testroot | 
					
						
							| 
									
										
										
										
											2010-08-11 19:23:24 +02:00
										 |  |  | 	dh_auto_install | 
					
						
							|  |  |  | 	dh_install --sourcedir=debian/tmp | 
					
						
							| 
									
										
										
										
											2009-06-14 20:17:10 +02:00
										 |  |  | 	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 |