File: rules

package info (click to toggle)
netkit-ftp 0.17-34
  • links: PTS
  • area: main
  • in suites: stretch
  • size: 1,300 kB
  • ctags: 1,723
  • sloc: ansic: 5,716; makefile: 101; sh: 13
file content (97 lines) | stat: -rwxr-xr-x 2,489 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
#!/usr/bin/make -f
# $Id: rules,v 1.9 2001/12/11 09:03:39 herbert Exp $
# Adapted for netkit-ftp.  Copyright 1999 by Herbert Xu.
# Sample debian/rules that uses debhelper. GNU copyright 1997 by Joey Hess.

# Uncomment this to turn on verbose mode.
#export DH_VERBOSE=1
DEFS := -D_GNU_SOURCE -D_FILE_OFFSET_BITS=64

CFLAGS += $(shell dpkg-buildflags --get CFLAGS) -fPIE -pie
CPPFLAGS += $(shell dpkg-buildflags --get CPPFLAGS)
LDFLAGS += $(shell dpkg-buildflags --get LDFLAGS) -Wl,-z,now

DEB_BUILD_GNU_TYPE ?= $(shell dpkg-architecture -qDEB_BUILD_GNU_TYPE)
DEB_HOST_GNU_TYPE ?= $(shell dpkg-architecture -qDEB_HOST_GNU_TYPE)
ifeq ($(DEB_BUILD_GNU_TYPE),$(DEB_HOST_GNU_TYPE))
	CROSS :=
else
	CROSS := CC=$(DEB_HOST_GNU_TYPE)-gcc
endif

build: build-arch build-indep
build-arch: build-stamp
build-indep: build-stamp
build-stamp:
	dh_testdir

	if [ ! -f MCONFIG ]; then \
		./configure; \
		sed -e 's;^CFLAGS=\(.*\)$$;CFLAGS= -g $(DEFS) -fno-strict-aliasing $(CFLAGS) $(CPPFLAGS) \1;' \
		    -e 's;^LDFLAGS=\(.*\)$$;& $(LDFLAGS);' \
		    MCONFIG > MCONFIG.new; \
		mv MCONFIG.new MCONFIG; \
	fi
	$(MAKE) $(CROSS)

	touch build-stamp

clean:
	dh_testdir
	dh_testroot
	rm -f build-stamp install-stamp

	[ ! -f MCONFIG ] || $(MAKE) distclean

	dh_clean

install: install-stamp
install-stamp: build-stamp
	dh_testdir
	dh_testroot
	dh_prep
	dh_installdirs

	$(MAKE) INSTALLROOT=`pwd`/debian/ftp MANDIR=/usr/share/man install
	mv debian/ftp/usr/bin/ftp debian/ftp/usr/bin/netkit-ftp
	#ln -sf netkit-ftp debian/ftp/usr/bin/pftp
	rm -f debian/ftp/usr/bin/pftp
	mv debian/ftp/usr/share/man/man1/ftp.1 \
	   debian/ftp/usr/share/man/man1/netkit-ftp.1
	#ln -sf netkit-ftp.1 debian/ftp/usr/share/man/man1/pftp.1
	rm -f debian/ftp/usr/share/man/man1/pftp.1
	mv debian/ftp/usr/share/man/man5/netrc.5 \
	   debian/ftp/usr/share/man/man5/netkit-netrc.5

	touch install-stamp

# Build architecture-independent files here.
binary-indep: build install
# We have nothing to do by default.

# Build architecture-dependent files here.
binary-arch: build install
#	dh_testversion
	dh_testdir
	dh_testroot
	dh_installdocs
	dh_installexamples
	dh_installmenu
	dh_installcron
	dh_installman
	dh_installchangelogs ChangeLog
	dh_link
	dh_strip
	dh_compress
	dh_fixperms
	dh_installdeb
	dh_shlibdeps
	dh_gencontrol
	dh_md5sums
	dh_builddeb

source diff:
	@echo >&2 'source and diff are obsolete - use dpkg-source -b'; false

binary: binary-indep binary-arch
.PHONY: build clean binary-indep binary-arch binary install