mirror of
https://github.com/samba-team/samba.git
synced 2025-01-14 19:24:43 +03:00
770b47415d
(This used to be commit 9f1b15832d4a8bc9914751811fd10f6a35265b8d)
79 lines
1.5 KiB
Makefile
Executable File
79 lines
1.5 KiB
Makefile
Executable File
#!/usr/bin/make -f
|
|
# By Jelmer Vernooij <jelmer@samba.org>
|
|
# Made with the aid of debmake, by Christoph Lameter,
|
|
# based on the sample debian/rules file for GNU hello by Ian Jackson.
|
|
|
|
SOURCEPATH=../../source
|
|
|
|
package=samba4
|
|
|
|
configure:
|
|
dh_testdir
|
|
cd $(SOURCEPATH) && ./autogen.sh
|
|
cd $(SOURCEPATH) && ./configure --with-fhs \
|
|
--prefix=/usr \
|
|
--enable-shared \
|
|
--enable-static \
|
|
--sysconfdir=/etc \
|
|
--libdir=/etc/samba4 \
|
|
--with-privatedir=/etc/samba4 \
|
|
--with-piddir=/var/run/samba4 \
|
|
--localstatedir=/var \
|
|
--with-pam \
|
|
--with-syslog \
|
|
--with-readline \
|
|
--with-ldap
|
|
touch $@
|
|
|
|
build: configure
|
|
dh_testdir
|
|
cd $(SOURCEPATH) && $(MAKE) proto all
|
|
touch $@
|
|
|
|
clean:
|
|
dh_testdir
|
|
dh_clean
|
|
rm -f build
|
|
-cd $(SOURCEPATH) && $(MAKE) clean
|
|
|
|
binary-indep: build install
|
|
dh_testdir -i
|
|
dh_testroot -i
|
|
dh_installdocs -i
|
|
dh_installchangelogs -i
|
|
dh_compress -i
|
|
dh_fixperms -i
|
|
dh_python -i
|
|
dh_installdeb -i
|
|
dh_gencontrol -i
|
|
dh_md5sums -i
|
|
dh_builddeb -i
|
|
# There are no architecture-independent files to be uploaded
|
|
# generated by this package. If there were any they would be
|
|
# made here.
|
|
|
|
install: build
|
|
dh_clean -k
|
|
dh_installdirs
|
|
$(MAKE) -C $(SOURCEPATH) install DESTDIR=`pwd`/../packaging/debian/tmp
|
|
|
|
binary-arch: build install
|
|
dh_testdir -a
|
|
dh_testroot -a
|
|
dh_installdocs -a
|
|
dh_installman -a
|
|
dh_strip -a
|
|
dh_python -a
|
|
dh_compress -a
|
|
dh_fixperms -a
|
|
dh_makeshlibs -a
|
|
dh_installdeb -a
|
|
dh_shlibdeps -a
|
|
dh_gencontrol -a
|
|
dh_md5sums -a
|
|
dh_builddeb -a
|
|
|
|
binary: binary-indep binary-arch
|
|
|
|
.PHONY: binary binary-arch binary-indep clean
|