initial commit
[profile/ivi/xorg-x11-xinit.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 CFLAGS += -Wall -g -D_F_EXIT_AFTER_XORG_AND_XCLIENT_LAUNCHED_
19 LDFLAGS +=
20 PREFIX = usr
21 DATADIR = /opt
22
23 ifneq (,$(findstring noopt,$(DEB_BUILD_OPTIONS)))
24         CFLAGS += -O0
25 else
26         CFLAGS += -O2
27 endif
28
29 # shared library versions, option 1
30 version=1.1.0
31 major=1
32 # option 2, assuming the library is created as src/.libs/libfoo.so.2.0.5 or so
33 #version=`ls src/.libs/lib*.so.* | \
34 # awk '{if (match($$0,/[0-9]+\.[0-9]+\.[0-9]+$$/)) print substr($$0,RSTART)}'`
35 #major=`ls src/.libs/lib*.so.* | \
36 # awk '{if (match($$0,/\.so\.[0-9]+$$/)) print substr($$0,RSTART+4)}'`
37
38 config.status: 
39         dh_testdir
40         # Add here commands to configure the package.
41         ./autogen.sh
42          ./configure --prefix=/$(PREFIX) CFLAGS="$(CFLAGS)" LDFLAGS="$(LDFLAGS)"
43          
44 build: build-stamp
45 build-stamp:  config.status
46         dh_testdir
47
48         # Add here commands to compile the package.
49         $(MAKE)
50
51         touch $@
52
53 clean:
54         dh_testdir
55         dh_testroot
56         rm -f build-stamp 
57
58         # Add here commands to clean up after the build process.
59         -$(MAKE) distclean
60 ifneq "$(wildcard /usr/share/misc/config.sub)" ""
61         cp -f /usr/share/misc/config.sub config.sub
62 endif
63 ifneq "$(wildcard /usr/share/misc/config.guess)" ""
64         cp -f /usr/share/misc/config.guess config.guess
65 endif
66
67
68         dh_clean 
69
70 install: build
71         dh_testdir
72         dh_testroot
73         dh_clean -k 
74         dh_installdirs
75
76         # Add here commands to install the package into debian/tmp
77         $(MAKE) DESTDIR=$(CURDIR)/debian/tmp install
78
79
80 # Build architecture-independent files here.
81 binary-indep: build install
82 # We have nothing to do by default.
83
84 # Build architecture-dependent files here.
85 binary-arch: build install
86         dh_testdir
87         dh_testroot
88         dh_installchangelogs
89         dh_installdocs
90         dh_installexamples
91         dh_install --sourcedir debian/tmp
92 #       dh_installmenu
93 #       dh_installdebconf       
94 #       dh_installlogrotate
95 #       dh_installemacsen
96 #       dh_installpam
97 #       dh_installmime
98 #       dh_installinit
99 #       dh_installcron
100 #       dh_installinfo
101         dh_installman
102         dh_link
103         dh_strip --dbg-package=xinit-dbg
104         dh_compress
105         dh_fixperms
106 #       dh_perl
107 #       dh_python
108 #       dh_makeshlibs
109         dh_installdeb
110         dh_shlibdeps
111         dh_gencontrol
112         dh_md5sums
113         dh_builddeb
114
115 binary: binary-indep binary-arch
116 .PHONY: build clean binary-indep binary-arch binary install