3 # Uncomment this to turn on verbose mode.
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)
14 ifneq (,$(findstring noopt,$(DEB_BUILD_OPTIONS)))
19 ifeq (,$(findstring nostrip,$(DEB_BUILD_OPTIONS)))
23 configure: configure-stamp
30 build-stamp: configure-stamp
37 rm -f configure-stamp build-stamp
38 [ ! -f Makefile ] || $(MAKE) distclean
42 INSTALL_XDS_DIR=/opt/AGL/xds/gdb
43 INSTALL_BIN_DIR=/opt/AGL/bin
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)
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/gdb/xds-gdb
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-gdb.sh > $(DEB_BASE_DIR)/etc/profile.d/$(NAME).sh
66 rm -rf $(DEB_INSTALL_XDS_DIR)/scripts $(DEB_INSTALL_XDS_DIR)/conf.d
68 # Move all files in their corresponding package
69 dh_install --list-missing -s --sourcedir=debian/tmp
72 # Build architecture-independent files here.
73 binary-indep: build install
74 # We have nothing to do by default.
76 # Build architecture-dependent files here.
77 binary-arch: build install
95 binary: binary-indep binary-arch
96 .PHONY: build clean binary-indep binary-arch binary install