mirror of
https://github.com/troglobit/editline.git
synced 2025-05-06 04:21:24 +08:00
52 lines
872 B
Makefile
Executable File
52 lines
872 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
|
|
|
|
build: build-stamp
|
|
build-stamp:
|
|
dh_testdir
|
|
dh_auto_configure
|
|
dh_auto_build
|
|
|
|
clean:
|
|
dh_testdir
|
|
dh_auto_clean
|
|
dh_clean
|
|
|
|
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
|