Damjan Marion | e17fdb5 | 2016-02-10 00:36:06 +0100 | [diff] [blame] | 1 | # Copyright (c) 2016 Cisco and/or its affiliates. |
| 2 | # Licensed under the Apache License, Version 2.0 (the "License"); |
| 3 | # you may not use this file except in compliance with the License. |
| 4 | # You may obtain a copy of the License at: |
| 5 | # |
| 6 | # http://www.apache.org/licenses/LICENSE-2.0 |
| 7 | # |
| 8 | # Unless required by applicable law or agreed to in writing, software |
| 9 | # distributed under the License is distributed on an "AS IS" BASIS, |
| 10 | # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 11 | # See the License for the specific language governing permissions and |
| 12 | # limitations under the License. |
| 13 | |
| 14 | WS_ROOT=$(CURDIR) |
| 15 | BR=$(WS_ROOT)/build-root |
| 16 | CCACHE_DIR?=$(BR)/.ccache |
Damjan Marion | e17fdb5 | 2016-02-10 00:36:06 +0100 | [diff] [blame] | 17 | GDB?=gdb |
Damjan Marion | e6f9023 | 2016-03-16 22:49:05 +0100 | [diff] [blame] | 18 | PLATFORM?=vpp |
Damjan Marion | e17fdb5 | 2016-02-10 00:36:06 +0100 | [diff] [blame] | 19 | |
Damjan Marion | 7a2a378 | 2016-04-15 20:24:55 +0200 | [diff] [blame] | 20 | MINIMAL_STARTUP_CONF="unix { interactive }" |
Damjan Marion | e17fdb5 | 2016-02-10 00:36:06 +0100 | [diff] [blame] | 21 | |
Damjan Marion | eef4d99 | 2016-02-23 22:04:50 +0100 | [diff] [blame] | 22 | GDB_ARGS= -ex "handle SIGUSR1 noprint nostop" |
| 23 | |
Damjan Marion | c5e8681 | 2016-05-02 19:40:27 +0200 | [diff] [blame] | 24 | # |
| 25 | # OS Detection |
| 26 | # |
| 27 | OS_ID = $(shell grep '^ID=' /etc/os-release | cut -f2- -d= | sed -e 's/\"//g') |
| 28 | OS_VERSION_ID= $(shell grep '^VERSION_ID=' /etc/os-release | cut -f2- -d= | sed -e 's/\"//g') |
| 29 | |
Damjan Marion | e17fdb5 | 2016-02-10 00:36:06 +0100 | [diff] [blame] | 30 | DEB_DEPENDS = curl build-essential autoconf automake bison libssl-dev ccache |
Ed Warnicke | 027103e | 2016-05-05 18:03:27 -0500 | [diff] [blame] | 31 | DEB_DEPENDS += debhelper dkms git libtool libganglia1-dev libapr1-dev dh-systemd |
Damjan Marion | e6f9023 | 2016-03-16 22:49:05 +0100 | [diff] [blame] | 32 | DEB_DEPENDS += libconfuse-dev git-review exuberant-ctags cscope |
Chris Luke | 54ccf22 | 2016-07-25 16:38:11 -0400 | [diff] [blame] | 33 | DEB_DEPENDS += python-dev |
Ed Warnicke | 027103e | 2016-05-05 18:03:27 -0500 | [diff] [blame] | 34 | ifeq ($(OS_VERSION_ID),14.04) |
| 35 | DEB_DEPENDS += openjdk-8-jdk-headless |
| 36 | else |
| 37 | DEB_DEPENDS += default-jdk-headless |
| 38 | endif |
Damjan Marion | e17fdb5 | 2016-02-10 00:36:06 +0100 | [diff] [blame] | 39 | |
Ed Warnicke | 84eda9d | 2016-03-22 16:09:29 -0500 | [diff] [blame] | 40 | RPM_DEPENDS_GROUPS = 'Development Tools' |
Thomas F Herbert | 473bf23 | 2016-04-27 16:19:03 -0400 | [diff] [blame] | 41 | RPM_DEPENDS = redhat-lsb glibc-static java-1.8.0-openjdk-devel yum-utils |
Ed Warnicke | 3c79e65 | 2016-03-28 14:53:19 -0500 | [diff] [blame] | 42 | RPM_DEPENDS += openssl-devel https://dl.fedoraproject.org/pub/epel/epel-release-latest-7.noarch.rpm apr-devel |
Chris Luke | 54ccf22 | 2016-07-25 16:38:11 -0400 | [diff] [blame] | 43 | RPM_DEPENDS += python-devel |
Ed Warnicke | 84eda9d | 2016-03-22 16:09:29 -0500 | [diff] [blame] | 44 | EPEL_DEPENDS = libconfuse-devel ganglia-devel |
| 45 | |
Damjan Marion | 0df78dd | 2016-03-29 22:37:02 +0200 | [diff] [blame] | 46 | ifneq ($(wildcard $(STARTUP_DIR)/startup.conf),) |
Damjan Marion | eef4d99 | 2016-02-23 22:04:50 +0100 | [diff] [blame] | 47 | STARTUP_CONF ?= $(STARTUP_DIR)/startup.conf |
| 48 | endif |
Damjan Marion | e17fdb5 | 2016-02-10 00:36:06 +0100 | [diff] [blame] | 49 | |
Damjan Marion | c5e8681 | 2016-05-02 19:40:27 +0200 | [diff] [blame] | 50 | ifeq ($(findstring y,$(UNATTENDED)),y) |
| 51 | CONFIRM=-y |
Keith Burns (alagalah) | f289ca6 | 2016-06-17 12:54:17 -0700 | [diff] [blame] | 52 | FORCE=--force-yes |
Damjan Marion | c5e8681 | 2016-05-02 19:40:27 +0200 | [diff] [blame] | 53 | endif |
| 54 | |
Damjan Marion | e17fdb5 | 2016-02-10 00:36:06 +0100 | [diff] [blame] | 55 | .PHONY: help bootstrap wipe wipe-release build build-release rebuild rebuild-release |
| 56 | .PHONY: run run-release debug debug-release build-vat run-vat pkg-deb pkg-rpm |
Chris Luke | 54ccf22 | 2016-07-25 16:38:11 -0400 | [diff] [blame] | 57 | .PHONY: ctags cscope plugins plugins-release build-vpp-api |
Damjan Marion | e17fdb5 | 2016-02-10 00:36:06 +0100 | [diff] [blame] | 58 | |
| 59 | help: |
| 60 | @echo "Make Targets:" |
| 61 | @echo " bootstrap - prepare tree for build" |
Damjan Marion | ebb27fb | 2016-02-25 16:26:01 +0100 | [diff] [blame] | 62 | @echo " install-dep - install software dependencies" |
Damjan Marion | e17fdb5 | 2016-02-10 00:36:06 +0100 | [diff] [blame] | 63 | @echo " wipe - wipe all products of debug build " |
| 64 | @echo " wipe-release - wipe all products of release build " |
| 65 | @echo " build - build debug binaries" |
| 66 | @echo " build-release - build release binaries" |
Damjan Marion | a777538 | 2016-07-07 17:56:48 +0200 | [diff] [blame] | 67 | @echo " plugins - build debug plugin binaries" |
| 68 | @echo " plugins-release - build release plugin binaries" |
Damjan Marion | e17fdb5 | 2016-02-10 00:36:06 +0100 | [diff] [blame] | 69 | @echo " rebuild - wipe and build debug binares" |
| 70 | @echo " rebuild-release - wipe and build release binares" |
| 71 | @echo " run - run debug binary" |
| 72 | @echo " run-release - run release binary" |
| 73 | @echo " debug - run debug binary with debugger" |
| 74 | @echo " debug-release - run release binary with debugger" |
| 75 | @echo " build-vat - build vpp-api-test tool" |
Ole Troan | 5f9dcff | 2016-08-01 04:59:13 +0200 | [diff] [blame] | 76 | @echo " build-vpp-api - build vpp-api" |
Damjan Marion | e17fdb5 | 2016-02-10 00:36:06 +0100 | [diff] [blame] | 77 | @echo " run-vat - run vpp-api-test tool" |
| 78 | @echo " pkg-deb - build DEB packages" |
| 79 | @echo " pkg-rpm - build RPM packages" |
Damjan Marion | e6f9023 | 2016-03-16 22:49:05 +0100 | [diff] [blame] | 80 | @echo " ctags - (re)generate ctags database" |
Damjan Marion | a777538 | 2016-07-07 17:56:48 +0200 | [diff] [blame] | 81 | @echo " gtags - (re)generate gtags database" |
Damjan Marion | e6f9023 | 2016-03-16 22:49:05 +0100 | [diff] [blame] | 82 | @echo " cscope - (re)generate cscope database" |
Chris Luke | 1d1644c | 2016-05-13 13:41:36 -0400 | [diff] [blame] | 83 | @echo " doxygen - (re)generate documentation" |
Chris Luke | 54ccf22 | 2016-07-25 16:38:11 -0400 | [diff] [blame] | 84 | @echo " bootstrap-doxygen - setup Doxygen dependencies" |
Chris Luke | 1d1644c | 2016-05-13 13:41:36 -0400 | [diff] [blame] | 85 | @echo " wipe-doxygen - wipe all generated documentation" |
Damjan Marion | e17fdb5 | 2016-02-10 00:36:06 +0100 | [diff] [blame] | 86 | @echo "" |
| 87 | @echo "Make Arguments:" |
| 88 | @echo " V=[0|1] - set build verbosity level" |
| 89 | @echo " STARTUP_CONF=<path> - startup configuration file" |
| 90 | @echo " (e.g. /etc/vpp/startup.conf)" |
Damjan Marion | eef4d99 | 2016-02-23 22:04:50 +0100 | [diff] [blame] | 91 | @echo " STARTUP_DIR=<path> - startup drectory (e.g. /etc/vpp)" |
| 92 | @echo " It also sets STARTUP_CONF if" |
| 93 | @echo " startup.conf file is present" |
Damjan Marion | e17fdb5 | 2016-02-10 00:36:06 +0100 | [diff] [blame] | 94 | @echo " GDB=<path> - gdb binary to use for debugging" |
Damjan Marion | e6f9023 | 2016-03-16 22:49:05 +0100 | [diff] [blame] | 95 | @echo " PLATFORM=<name> - target platform. default is vpp" |
Damjan Marion | e17fdb5 | 2016-02-10 00:36:06 +0100 | [diff] [blame] | 96 | @echo "" |
| 97 | @echo "Current Argumernt Values:" |
| 98 | @echo " V = $(V)" |
| 99 | @echo " STARTUP_CONF = $(STARTUP_CONF)" |
Damjan Marion | eef4d99 | 2016-02-23 22:04:50 +0100 | [diff] [blame] | 100 | @echo " STARTUP_DIR = $(STARTUP_DIR)" |
Damjan Marion | e17fdb5 | 2016-02-10 00:36:06 +0100 | [diff] [blame] | 101 | @echo " GDB = $(GDB)" |
Damjan Marion | e6f9023 | 2016-03-16 22:49:05 +0100 | [diff] [blame] | 102 | @echo " PLATFORM = $(PLATFORM)" |
Damjan Marion | 0df78dd | 2016-03-29 22:37:02 +0200 | [diff] [blame] | 103 | @echo " DPDK_VERSION = $(DPDK_VERSION)" |
Damjan Marion | e17fdb5 | 2016-02-10 00:36:06 +0100 | [diff] [blame] | 104 | |
| 105 | $(BR)/.bootstrap.ok: |
Damjan Marion | c5e8681 | 2016-05-02 19:40:27 +0200 | [diff] [blame] | 106 | ifeq ($(OS_ID),ubuntu) |
Damjan Marion | e17fdb5 | 2016-02-10 00:36:06 +0100 | [diff] [blame] | 107 | @MISSING=$$(apt-get install -y -qq -s $(DEB_DEPENDS) | grep "^Inst ") ; \ |
| 108 | if [ -n "$$MISSING" ] ; then \ |
| 109 | echo "\nPlease install missing packages: \n$$MISSING\n" ; \ |
Damjan Marion | ebb27fb | 2016-02-25 16:26:01 +0100 | [diff] [blame] | 110 | echo "by executing \"make install-dep\"\n" ; \ |
Damjan Marion | e17fdb5 | 2016-02-10 00:36:06 +0100 | [diff] [blame] | 111 | exit 1 ; \ |
| 112 | fi ; \ |
| 113 | exit 0 |
| 114 | endif |
Damjan Marion | 905a7f5 | 2016-07-07 20:27:49 +0200 | [diff] [blame] | 115 | @echo "SOURCE_PATH = $(WS_ROOT)" > $(BR)/build-config.mk |
Damjan Marion | e17fdb5 | 2016-02-10 00:36:06 +0100 | [diff] [blame] | 116 | @echo "#!/bin/bash\n" > $(BR)/path_setup |
| 117 | @echo 'export PATH=$(BR)/tools/ccache-bin:$$PATH' >> $(BR)/path_setup |
| 118 | @echo 'export PATH=$(BR)/tools/bin:$$PATH' >> $(BR)/path_setup |
| 119 | @echo 'export CCACHE_DIR=$(CCACHE_DIR)' >> $(BR)/path_setup |
Ole Troan | 6855f6c | 2016-04-09 03:16:30 +0200 | [diff] [blame] | 120 | |
Damjan Marion | e17fdb5 | 2016-02-10 00:36:06 +0100 | [diff] [blame] | 121 | ifeq ("$(wildcard /usr/bin/ccache )","") |
| 122 | @echo "WARNING: Please install ccache AYEC and re-run this script" |
| 123 | else |
| 124 | @rm -rf $(BR)/tools/ccache-bin |
| 125 | @mkdir -p $(BR)/tools/ccache-bin |
| 126 | @ln -s /usr/bin/ccache $(BR)/tools/ccache-bin/gcc |
| 127 | @ln -s /usr/bin/ccache $(BR)/tools/ccache-bin/g++ |
| 128 | endif |
| 129 | @make -C $(BR) V=$(V) is_build_tool=yes vppapigen-install |
| 130 | @touch $@ |
| 131 | |
| 132 | bootstrap: $(BR)/.bootstrap.ok |
| 133 | |
Damjan Marion | ebb27fb | 2016-02-25 16:26:01 +0100 | [diff] [blame] | 134 | install-dep: |
Damjan Marion | c5e8681 | 2016-05-02 19:40:27 +0200 | [diff] [blame] | 135 | ifeq ($(OS_ID),ubuntu) |
| 136 | ifeq ($(OS_VERSION_ID),14.04) |
Keith Burns (alagalah) | f289ca6 | 2016-06-17 12:54:17 -0700 | [diff] [blame] | 137 | @sudo -E apt-get $(CONFIRM) $(FORCE) install software-properties-common |
| 138 | @sudo -E add-apt-repository ppa:openjdk-r/ppa $(CONFIRM) |
Dave Wallace | ed18a1c | 2016-05-13 19:00:29 -0400 | [diff] [blame] | 139 | @sudo -E apt-get update |
Damjan Marion | c5e8681 | 2016-05-02 19:40:27 +0200 | [diff] [blame] | 140 | endif |
Keith Burns (alagalah) | f289ca6 | 2016-06-17 12:54:17 -0700 | [diff] [blame] | 141 | @sudo -E apt-get $(CONFIRM) $(FORCE) install $(DEB_DEPENDS) |
Ed Warnicke | 84eda9d | 2016-03-22 16:09:29 -0500 | [diff] [blame] | 142 | else ifneq ("$(wildcard /etc/redhat-release)","") |
Damjan Marion | c5e8681 | 2016-05-02 19:40:27 +0200 | [diff] [blame] | 143 | @sudo yum groupinstall $(CONFIRM) $(RPM_DEPENDS_GROUPS) |
| 144 | @sudo yum install $(CONFIRM) $(RPM_DEPENDS) |
| 145 | @sudo yum install $(CONFIRM) --enablerepo=epel $(EPEL_DEPENDS) |
Ed Warnicke | d6a779c | 2016-05-03 16:47:50 -0500 | [diff] [blame] | 146 | @sudo debuginfo-install $(CONFIRM) glibc-2.17-106.el7_2.4.x86_64 openssl-libs-1.0.1e-51.el7_2.4.x86_64 zlib-1.2.7-15.el7.x86_64 |
Damjan Marion | ebb27fb | 2016-02-25 16:26:01 +0100 | [diff] [blame] | 147 | else |
Ed Warnicke | 84eda9d | 2016-03-22 16:09:29 -0500 | [diff] [blame] | 148 | $(error "This option currently works only on Ubuntu or Centos systems") |
Damjan Marion | ebb27fb | 2016-02-25 16:26:01 +0100 | [diff] [blame] | 149 | endif |
| 150 | |
Damjan Marion | e17fdb5 | 2016-02-10 00:36:06 +0100 | [diff] [blame] | 151 | define make |
Damjan Marion | 6b1d7c5 | 2016-04-26 18:19:47 +0200 | [diff] [blame] | 152 | @make -C $(BR) PLATFORM=$(PLATFORM) TAG=$(1) $(2) |
Damjan Marion | e17fdb5 | 2016-02-10 00:36:06 +0100 | [diff] [blame] | 153 | endef |
| 154 | |
| 155 | build: $(BR)/.bootstrap.ok |
Damjan Marion | e6f9023 | 2016-03-16 22:49:05 +0100 | [diff] [blame] | 156 | $(call make,$(PLATFORM)_debug,vpp-install) |
Damjan Marion | e17fdb5 | 2016-02-10 00:36:06 +0100 | [diff] [blame] | 157 | |
| 158 | wipe: $(BR)/.bootstrap.ok |
Damjan Marion | e6f9023 | 2016-03-16 22:49:05 +0100 | [diff] [blame] | 159 | $(call make,$(PLATFORM)_debug,vpp-wipe) |
Damjan Marion | e17fdb5 | 2016-02-10 00:36:06 +0100 | [diff] [blame] | 160 | |
| 161 | rebuild: wipe build |
| 162 | |
| 163 | build-release: $(BR)/.bootstrap.ok |
Damjan Marion | e6f9023 | 2016-03-16 22:49:05 +0100 | [diff] [blame] | 164 | $(call make,$(PLATFORM),vpp-install) |
Damjan Marion | e17fdb5 | 2016-02-10 00:36:06 +0100 | [diff] [blame] | 165 | |
| 166 | wipe-release: $(BR)/.bootstrap.ok |
Damjan Marion | e6f9023 | 2016-03-16 22:49:05 +0100 | [diff] [blame] | 167 | $(call make,$(PLATFORM),vpp-wipe) |
Damjan Marion | e17fdb5 | 2016-02-10 00:36:06 +0100 | [diff] [blame] | 168 | |
| 169 | rebuild-release: wipe-release build-release |
| 170 | |
Pierre Pfister | 3535222 | 2016-05-27 10:30:13 +0100 | [diff] [blame] | 171 | plugins: $(BR)/.bootstrap.ok |
Ole Troan | 3b3688f | 2016-06-15 14:29:08 +0200 | [diff] [blame] | 172 | $(call make,$(PLATFORM)_debug,plugins-install) |
Pierre Pfister | 3535222 | 2016-05-27 10:30:13 +0100 | [diff] [blame] | 173 | |
| 174 | plugins-release: $(BR)/.bootstrap.ok |
Ole Troan | 3b3688f | 2016-06-15 14:29:08 +0200 | [diff] [blame] | 175 | $(call make,$(PLATFORM),plugins-install) |
Pierre Pfister | 3535222 | 2016-05-27 10:30:13 +0100 | [diff] [blame] | 176 | |
Ole Troan | 5f9dcff | 2016-08-01 04:59:13 +0200 | [diff] [blame] | 177 | build-vpp-api: $(BR)/.bootstrap.ok |
| 178 | $(call make,$(PLATFORM)_debug,vpp-api-install) |
| 179 | |
Damjan Marion | eef4d99 | 2016-02-23 22:04:50 +0100 | [diff] [blame] | 180 | STARTUP_DIR ?= $(PWD) |
Damjan Marion | e17fdb5 | 2016-02-10 00:36:06 +0100 | [diff] [blame] | 181 | ifeq ("$(wildcard $(STARTUP_CONF))","") |
| 182 | define run |
| 183 | @echo "WARNING: STARTUP_CONF not defined or file doesn't exist." |
| 184 | @echo " Running with minimal startup config: $(MINIMAL_STARTUP_CONF)\n" |
Damjan Marion | a777538 | 2016-07-07 17:56:48 +0200 | [diff] [blame] | 185 | @cd $(STARTUP_DIR) && \ |
Damjan Marion | 905a7f5 | 2016-07-07 20:27:49 +0200 | [diff] [blame] | 186 | sudo $(2) $(1)/vpp/bin/vpp $(MINIMAL_STARTUP_CONF) plugin_path $(1)/plugins/lib64/vpp_plugins |
Damjan Marion | e17fdb5 | 2016-02-10 00:36:06 +0100 | [diff] [blame] | 187 | endef |
| 188 | else |
| 189 | define run |
Damjan Marion | a777538 | 2016-07-07 17:56:48 +0200 | [diff] [blame] | 190 | @cd $(STARTUP_DIR) && \ |
Damjan Marion | 905a7f5 | 2016-07-07 20:27:49 +0200 | [diff] [blame] | 191 | sudo $(2) $(1)/vpp/bin/vpp $(shell cat $(STARTUP_CONF) | sed -e 's/#.*//') plugin_path $(1)/plugins/lib64/vpp_plugins |
Damjan Marion | e17fdb5 | 2016-02-10 00:36:06 +0100 | [diff] [blame] | 192 | endef |
| 193 | endif |
| 194 | |
Damjan Marion | e6f9023 | 2016-03-16 22:49:05 +0100 | [diff] [blame] | 195 | %.files: .FORCE |
| 196 | @find . \( -name '*\.[chyS]' -o -name '*\.java' -o -name '*\.lex' \) -and \ |
| 197 | \( -not -path './build-root*' -o -path \ |
| 198 | './build-root/build-vpp_debug-native/dpdk*' \) > $@ |
| 199 | |
| 200 | .FORCE: |
| 201 | |
Damjan Marion | e17fdb5 | 2016-02-10 00:36:06 +0100 | [diff] [blame] | 202 | run: |
Damjan Marion | a777538 | 2016-07-07 17:56:48 +0200 | [diff] [blame] | 203 | $(call run, $(BR)/install-$(PLATFORM)_debug-native) |
Damjan Marion | e17fdb5 | 2016-02-10 00:36:06 +0100 | [diff] [blame] | 204 | |
| 205 | run-release: |
Damjan Marion | a777538 | 2016-07-07 17:56:48 +0200 | [diff] [blame] | 206 | $(call run, $(BR)/install-$(PLATFORM)-native) |
Damjan Marion | e17fdb5 | 2016-02-10 00:36:06 +0100 | [diff] [blame] | 207 | |
| 208 | debug: |
Damjan Marion | a777538 | 2016-07-07 17:56:48 +0200 | [diff] [blame] | 209 | $(call run, $(BR)/install-$(PLATFORM)_debug-native,$(GDB) $(GDB_ARGS) --args) |
Damjan Marion | e17fdb5 | 2016-02-10 00:36:06 +0100 | [diff] [blame] | 210 | |
| 211 | debug-release: |
Damjan Marion | a777538 | 2016-07-07 17:56:48 +0200 | [diff] [blame] | 212 | $(call run, $(BR)/install-$(PLATFORM)-native,$(GDB) $(GDB_ARGS) --args) |
Damjan Marion | e17fdb5 | 2016-02-10 00:36:06 +0100 | [diff] [blame] | 213 | |
| 214 | build-vat: |
Damjan Marion | e6f9023 | 2016-03-16 22:49:05 +0100 | [diff] [blame] | 215 | $(call make,$(PLATFORM)_debug,vpp-api-test-install) |
Damjan Marion | e17fdb5 | 2016-02-10 00:36:06 +0100 | [diff] [blame] | 216 | |
| 217 | run-vat: |
Damjan Marion | e6f9023 | 2016-03-16 22:49:05 +0100 | [diff] [blame] | 218 | @sudo $(BR)/install-$(PLATFORM)_debug-native/vpp-api-test/bin/vpp_api_test |
Damjan Marion | e17fdb5 | 2016-02-10 00:36:06 +0100 | [diff] [blame] | 219 | |
| 220 | pkg-deb: |
Damjan Marion | e6f9023 | 2016-03-16 22:49:05 +0100 | [diff] [blame] | 221 | $(call make,$(PLATFORM),install-deb) |
Damjan Marion | e17fdb5 | 2016-02-10 00:36:06 +0100 | [diff] [blame] | 222 | |
| 223 | pkg-rpm: |
Damjan Marion | e6f9023 | 2016-03-16 22:49:05 +0100 | [diff] [blame] | 224 | $(call make,$(PLATFORM),install-rpm) |
| 225 | |
| 226 | ctags: ctags.files |
| 227 | @ctags --totals --tag-relative -L $< |
| 228 | @rm $< |
| 229 | |
Keith Burns (alagalah) | 4b72a58 | 2016-07-02 17:54:36 -0700 | [diff] [blame] | 230 | gtags: ctags |
| 231 | @gtags --gtagslabel=ctags |
| 232 | |
Damjan Marion | e6f9023 | 2016-03-16 22:49:05 +0100 | [diff] [blame] | 233 | cscope: cscope.files |
| 234 | @cscope -b -q -v |
Marek Gradzki | 60c63c7 | 2016-04-26 08:01:31 +0200 | [diff] [blame] | 235 | |
Chris Luke | b585097 | 2016-05-03 16:34:59 -0400 | [diff] [blame] | 236 | |
Chris Luke | 1d1644c | 2016-05-13 13:41:36 -0400 | [diff] [blame] | 237 | # |
| 238 | # Build the documentation |
| 239 | # |
| 240 | |
Chris Luke | 54ccf22 | 2016-07-25 16:38:11 -0400 | [diff] [blame] | 241 | # Doxygen configuration and our utility scripts |
| 242 | export DOXY_DIR ?= $(WS_ROOT)/doxygen |
| 243 | |
| 244 | define make-doxy |
Chris Luke | e0d802b | 2016-08-31 10:04:58 -0400 | [diff] [blame^] | 245 | @OS_ID="$(OS_ID)" WS_ROOT="$(WS_ROOT)" BR="$(BR)" make -C $(DOXY_DIR) $@ |
Chris Luke | 54ccf22 | 2016-07-25 16:38:11 -0400 | [diff] [blame] | 246 | endef |
| 247 | |
| 248 | .PHONY: bootstrap-doxygen doxygen wipe-doxygen |
| 249 | |
| 250 | bootstrap-doxygen: |
| 251 | $(call make-doxy) |
Chris Luke | b585097 | 2016-05-03 16:34:59 -0400 | [diff] [blame] | 252 | |
Chris Luke | b585097 | 2016-05-03 16:34:59 -0400 | [diff] [blame] | 253 | doxygen: |
Chris Luke | 54ccf22 | 2016-07-25 16:38:11 -0400 | [diff] [blame] | 254 | $(call make-doxy) |
Chris Luke | b585097 | 2016-05-03 16:34:59 -0400 | [diff] [blame] | 255 | |
| 256 | wipe-doxygen: |
Chris Luke | 54ccf22 | 2016-07-25 16:38:11 -0400 | [diff] [blame] | 257 | $(call make-doxy) |
| 258 | |