]> git.ipfire.org Git - thirdparty/strongswan.git/blame - packages/maemo-strongswan/debian/rules
autoconf: Replace --disable-tools option with --disable-scepclient
[thirdparty/strongswan.git] / packages / maemo-strongswan / debian / rules
CommitLineData
333bb051
TB
1#!/usr/bin/make -f
2# -*- makefile -*-
3# Sample debian/rules that uses debhelper.
4#
5# This file was originally written by Joey Hess and Craig Small.
6# As a special exception, when this file is copied by dh-make into a
7# dh-make output file, you may use that output file without restriction.
8# This special exception was added by Craig Small in version 0.37 of dh-make.
9#
10# Modified to make a template file for a multi-binary package with separated
11# build-arch and build-indep targets by Bill Allombert 2001
12
13# Uncomment this to turn on verbose mode.
14#export DH_VERBOSE=1
15
16# This has to be exported to make some magic below work.
17export DH_OPTIONS
18
19# These are used for cross-compiling and for saving the configure script
20# from having to guess our platform (since we know it already)
21DEB_HOST_GNU_TYPE ?= $(shell dpkg-architecture -qDEB_HOST_GNU_TYPE)
22DEB_BUILD_GNU_TYPE ?= $(shell dpkg-architecture -qDEB_BUILD_GNU_TYPE)
23
24CONFIG_OPTIONS = \
7a4d3fa8 25 --prefix=/usr --sysconfdir=/etc \
3986c1e3 26 --disable-scepclient --disable-pki --disable-scripts \
068b9c0b
TB
27 --disable-fips-prf --disable-pubkey --disable-attr \
28 --disable-constraints --disable-revocation \
333bb051
TB
29 --disable-sha1 --disable-sha2 --disable-aes --disable-des \
30 --disable-md5 --disable-gmp --disable-pgp --disable-dnskey \
31 --enable-openssl --enable-monolithic --enable-eap-identity \
32 --enable-eap-md5 --enable-eap-mschapv2 --enable-maemo
33
34CFLAGS = -Wall -g -Wno-format -Wno-pointer-sign -Wno-strict-aliasing -Wno-sign-compare -Wno-unused-parameter
35
36ifneq (,$(findstring noopt,$(DEB_BUILD_OPTIONS)))
37 CFLAGS += -O0
38else
39 CFLAGS += -O2
40endif
41
42ifeq (,$(filter nostrip,$(DEB_BUILD_OPTIONS)))
43 INSTALL_PROGRAM += -s
44endif
45
46ifneq (,$(filter parallel=%,$(DEB_BUILD_OPTIONS)))
47 NUMJOBS = $(patsubst parallel=%,%,$(filter parallel=%,$(DEB_BUILD_OPTIONS)))
48 MAKEFLAGS += -j$(NUMJOBS)
49endif
50
51# Use hardware floating point
52ifneq (,$(findstring vfp,$(DEB_BUILD_OPTIONS)))
53 CFLAGS += -mfpu=vfp -mfloat-abi=softfp
54endif
55
56config.status: configure
57 dh_testdir
3986c1e3 58 ./configure --host=$(DEB_HOST_GNU_TYPE) --build=$(DEB_BUILD_GNU_TYPE) --mandir=\$${prefix}/share/man --infodir=\$${prefix}/share/info $(CONFIG_OPTIONS) CFLAGS="$(CFLAGS)"
333bb051
TB
59 #LDFLAGS="-Wl,-z,defs"
60
61
3986c1e3 62#Architecture
333bb051
TB
63build: build-arch build-indep
64
65build-arch: build-arch-stamp
66build-arch-stamp: config.status
bcc4eb6a 67 $(MAKE)
333bb051
TB
68 touch $@
69
70build-indep: build-indep-stamp
71build-indep-stamp: config.status
333bb051
TB
72 # Add here commands to compile the indep part of the package.
73 #$(MAKE) doc
74 touch $@
75
76clean:
77 dh_testdir
78 dh_testroot
79 rm -f build-arch-stamp build-indep-stamp #CONFIGURE-STAMP#
80
333bb051
TB
81 -$(MAKE) distclean
82ifneq "$(wildcard /usr/share/misc/config.sub)" ""
83 cp -f /usr/share/misc/config.sub config.sub
84endif
85ifneq "$(wildcard /usr/share/misc/config.guess)" ""
86 cp -f /usr/share/misc/config.guess config.guess
87endif
88
3986c1e3 89 dh_clean
333bb051 90
bcc4eb6a 91install: build
333bb051
TB
92 dh_testdir
93 dh_testroot
bcc4eb6a
TB
94 dh_clean -k
95 dh_installdirs
333bb051 96
bcc4eb6a 97 $(MAKE) DESTDIR=$(CURDIR)/debian/tmp install
333bb051 98
bcc4eb6a 99 dh_install --list-missing --sourcedir=debian/tmp
333bb051 100
333bb051
TB
101# Must not depend on anything. This is to be called by
102# binary-arch/binary-indep
103# in another 'make' thread.
104binary-common:
105 dh_testdir
106 dh_testroot
107 dh_installchangelogs NEWS
108 dh_installdocs
109 dh_installexamples
110# dh_installmenu
3986c1e3
TB
111# dh_installdebconf
112# dh_installlogrotate
333bb051
TB
113# dh_installemacsen
114# dh_installpam
115# dh_installmime
116# dh_python
117# dh_installinit
118# dh_installcron
119# dh_installinfo
120 dh_installman
121 dh_link
122 dh_strip
3986c1e3 123 dh_compress
333bb051
TB
124 dh_fixperms
125# dh_perl
126 dh_makeshlibs
127 dh_installdeb
128 dh_shlibdeps
129 dh_gencontrol
130 dh_md5sums
131 dh_builddeb
bcc4eb6a 132
f3bb1bd0 133# Build architecture independent packages using the common target.
bcc4eb6a 134binary-indep: build-indep install
333bb051
TB
135 $(MAKE) -f debian/rules DH_OPTIONS=-i binary-common
136
f3bb1bd0 137# Build architecture dependent packages using the common target.
bcc4eb6a 138binary-arch: build-arch install
333bb051
TB
139 $(MAKE) -f debian/rules DH_OPTIONS=-s binary-common
140
141binary: binary-arch binary-indep
bcc4eb6a 142.PHONY: build clean binary-indep binary-arch binary install