X-Git-Url: http://git.kpe.io/?a=blobdiff_plain;f=debian%2Frules;h=9068b4e841186e35f40a2c3006d93ee474d0ff52;hb=6a10245b9f5d84290c280eb583f97e1ddaa9cbe5;hp=49f81f78974ed9f9812cb6840d2c5ba18f780068;hpb=817d5966509f576f8e04e8262f9e86a9a8fabd48;p=clsql.git diff --git a/debian/rules b/debian/rules index 49f81f7..9068b4e 100755 --- a/debian/rules +++ b/debian/rules @@ -68,24 +68,18 @@ lispdir-tests := $(clc-tests)/tests configure: configure-stamp configure-stamp: dh_testdir - # Add here commands to configure the package. touch configure-stamp build-arch: configure-stamp build-arch-stamp build-arch-stamp: dh_testdir - # Add here commands to compile the package. $(MAKE) touch build-arch-stamp build-indep: configure-stamp build-indep-stamp build-indep-stamp: dh_testdir - # Add here command to compile/build the arch indep package. - # It's ok not to do anything here, if you don't need to build - # anything for this package. - #/usr/bin/docbook-to-man debian/#PACKAGE#.sgml > #PACKAGE#.1 touch build-indep-stamp build: build-arch build-indep @@ -94,8 +88,7 @@ clean: dh_testdir dh_testroot rm -f build-arch-stamp build-indep-stamp configure-stamp - # Add here commands to clean up after the build process. - -$(MAKE) clean + [ ! -f Makefile ] || $(MAKE) distclean find . -type f -and -name \*~ -or -name .\*~ -exec rm -f {} \; dh_clean @@ -106,9 +99,8 @@ install: build dh_clean -k dh_installdirs - # Add here commands to install the package into debian/uffi. dh_installdirs --all $(clc-systems) $(clc-source) - dh_installdirs -p $(pkg) $(lispdir-sql) + dh_installdirs -p $(pkg) $(lispdir-sql) etc dh_installdirs -p $(pkg-uffi) $(lispdir-uffi) $(sodir-uffi) dh_installdirs -p $(pkg-pg) $(lispdir-pg) dh_installdirs -p $(pkg-pg-socket) $(lispdir-pg-socket) @@ -123,6 +115,7 @@ install: build # Main package dh_install -p $(pkg) $(srcs) $(lispdir-sql) dh_install -p $(pkg) clsql.asd $(clc-clsql) + dh_install -p $(pkg) debian/clsql-init.lisp etc # UFFI dh_install -p $(pkg-uffi) $(srcs-uffi) $(lispdir-uffi) @@ -187,8 +180,6 @@ install: build done -# Build architecture-independent files here. -# Pass -i to all debhelper commands in this target to reduce clutter. binary-indep: build install dh_testdir -i dh_testroot -i @@ -209,6 +200,7 @@ binary-indep: build install dh_link -i dh_compress -i dh_fixperms -i +# dh_makeshlibs -i dh_installdeb -i # dh_perl -i dh_gencontrol -i @@ -237,7 +229,7 @@ binary-arch: build install dh_link -a dh_compress -a dh_fixperms -a -# dh_makeshlibs -a +# dh_makeslhibs -a dh_installdeb -a # dh_perl -a dh_shlibdeps -a @@ -248,4 +240,3 @@ binary-arch: build install binary: binary-indep binary-arch .PHONY: build clean binary-indep binary-arch binary install configure -