Git init
[framework/security/openssl.git] / debian / rules
1 #!/usr/bin/make -f
2 # -*- makefile -*-
3 # Sample debian/rules that uses debhelper.
4 # This file was originally written by Joey Hess and Craig Small.
5 # As a special exception, when this file is copied by dh-make into a
6 # dh-make output file, you may use that output file without restriction.
7 # This special exception was added by Craig Small in version 0.37 of dh-make.
8
9 # Uncomment this to turn on verbose mode.
10 #export DH_VERBOSE=1
11
12
13 # These are used for cross-compiling and for saving the configure script
14 # from having to guess our platform (since we know it already)
15 DEB_HOST_GNU_TYPE   ?= $(shell dpkg-architecture -qDEB_HOST_GNU_TYPE)
16 DEB_BUILD_GNU_TYPE  ?= $(shell dpkg-architecture -qDEB_BUILD_GNU_TYPE)
17
18
19 CFLAGS = -Wall -g
20
21 ifneq (,$(findstring noopt,$(DEB_BUILD_OPTIONS)))
22         CFLAGS += -O0
23 else
24         CFLAGS += -O2
25 endif
26
27 config.status: Configure
28         dh_testdir
29         # Add here commands to configure the package.
30         ./Configure shared --prefix=/usr --install-prefix=$(CURDIR)/debian/tmp linux-generic32 -ldl -no-asm enable-md2
31
32 build: build-stamp
33
34 build-stamp:  config.status
35         dh_testdir
36
37         # Add here commands to compile the package.
38         $(MAKE)
39
40         touch $@
41
42 clean:
43         dh_testdir
44         dh_testroot
45         rm -f build-stamp 
46
47         # Add here commands to clean up after the build process.
48         -$(MAKE) distclean
49 ifneq "$(wildcard /usr/share/misc/config.sub)" ""
50         cp -f /usr/share/misc/config.sub config.sub
51 endif
52 ifneq "$(wildcard /usr/share/misc/config.guess)" ""
53         cp -f /usr/share/misc/config.guess config.guess
54 endif
55
56
57         dh_clean 
58
59 install: build
60         dh_testdir
61         dh_testroot
62         dh_clean -k 
63         dh_installdirs
64
65         # Add here commands to install the package into debian/openssl.
66         $(MAKE) install
67
68
69 # Build architecture-independent files here.
70 binary-indep: build install
71 # We have nothing to do by default.
72
73 # Build architecture-dependent files here.
74 binary-arch: build install
75         dh_testdir
76         dh_testroot
77         dh_install --sourcedir=debian/tmp --list-missing
78         dh_installman
79         dh_link
80         dh_strip
81         dh_compress
82         dh_fixperms
83         dh_makeshlibs
84         dh_installdeb
85         dh_shlibdeps
86         dh_gencontrol
87         dh_md5sums
88         dh_builddeb
89
90 binary: binary-indep binary-arch
91 .PHONY: build clean binary-indep binary-arch binary install