a1b4a6a07d9c3ca42b0598b6e58363b6fb66c084
[src/xds/xds-cli.git] / conf.d / packaging / deb / debian.rules
1 #!/usr/bin/make -f
2 # -*- makefile -*-
3 # Uncomment this to turn on verbose mode.
4 export DH_VERBOSE=1
5
6 # These are used for cross-compiling and for saving the configure script
7 # from having to guess our platform (since we know it already)
8 DEB_HOST_GNU_TYPE   ?= $(shell dpkg-architecture -qDEB_HOST_GNU_TYPE)
9 DEB_BUILD_GNU_TYPE  ?= $(shell dpkg-architecture -qDEB_BUILD_GNU_TYPE)
10
11
12 CFLAGS = -Wall -g
13
14 ifneq (,$(findstring noopt,$(DEB_BUILD_OPTIONS)))
15        CFLAGS += -O0
16 else
17        CFLAGS += -O2
18 endif
19 ifeq (,$(findstring nostrip,$(DEB_BUILD_OPTIONS)))
20        INSTALL_PROGRAM += -s
21 endif
22
23 configure: configure-stamp
24 configure-stamp:
25         dh_testdir
26         #
27         touch configure-stamp
28
29 build: build-stamp
30 build-stamp: configure-stamp
31         dh_testdir
32         touch build-stamp
33
34 clean:
35         #dh_testdir
36         dh_testroot
37         rm -f configure-stamp build-stamp
38         [ ! -f Makefile ] || $(MAKE) distclean
39         #dh_clean
40
41 NAME=agl-xds-cli
42 INSTALL_XDS_DIR=/opt/AGL/xds/cli
43 INSTALL_BIN_DIR=/opt/AGL/bin
44
45 DEB_BASE_DIR=debian/$(NAME)
46 DEB_INSTALL_XDS_DIR=$(DEB_BASE_DIR)/$(INSTALL_XDS_DIR)
47 DEB_INSTALL_BIN_DIR=$(DEB_BASE_DIR)/$(INSTALL_BIN_DIR)
48
49 install: build
50         dh_testdir
51         dh_testroot
52         dh_prep
53         dh_installdirs
54
55         # Add here commands to install the package into debian/tmp
56         mkdir -p $(DEB_INSTALL_XDS_DIR) $(DEB_INSTALL_BIN_DIR)
57         find . -maxdepth 1 ! -name debian -exec cp -r {} $(DEB_INSTALL_XDS_DIR) \;
58         rm -fr $(DEB_INSTALL_XDS_DIR)/debian $(DEB_INSTALL_XDS_DIR)/*-stamp
59         cd $(DEB_INSTALL_BIN_DIR) && ln -s ../xds/cli/xds-cli
60
61         # Add XDS in user's PATH
62         mkdir -p $(DEB_BASE_DIR)/etc/profile.d
63         sed -e "s;@XDS_INSTALL_BIN_DIR@;$(INSTALL_BIN_DIR);g" $(DEB_INSTALL_XDS_DIR)/conf.d/etc/profile.d/xds-cli.sh > $(DEB_BASE_DIR)/etc/profile.d/$(NAME).sh
64
65         # Cleanup
66         rm -rf $(DEB_INSTALL_XDS_DIR)/scripts $(DEB_INSTALL_XDS_DIR)/conf.d
67
68         # Move all files in their corresponding package
69         dh_install --list-missing -s --sourcedir=debian/tmp
70
71 # Build architecture-independent files here.
72 binary-indep: build install
73 # We have nothing to do by default.
74
75 # Build architecture-dependent files here.
76 binary-arch: build install
77         dh_testdir
78         dh_testroot
79         dh_installchangelogs
80         dh_installdocs
81         dh_installexamples
82         dh_installman
83         dh_link
84         dh_strip
85         dh_compress
86         dh_fixperms
87         dh_makeshlibs -V
88         dh_installdeb
89         #dh_shlibdeps
90         dh_gencontrol
91         dh_md5sums
92         dh_builddeb
93
94 binary: binary-indep binary-arch
95 .PHONY: build clean binary-indep binary-arch binary install