forked from dushyantbehl/xdp-mptm
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Makefile
38 lines (29 loc) · 915 Bytes
/
Makefile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
# --------------------------------------------------
# SPDX-License-Identifier: (GPL-2.0 OR BSD-2-Clause)
#
# Authors:
# Dushyant Behl <[email protected]>
# Sayandeep Sen <[email protected]>
# Palanivel Kodeswaran <[email protected]>
#
# Currently we use the make framework of xdp-tutorials/common
DEPS := ./deps
export MPTM_DEBUG := n
SRC_DIR ?= src
USER_SRC_DIR ?= ${SRC_DIR}/user
KERNEL_SRC_DIR ?= ${SRC_DIR}/kernel
XDP_PROGS := mptm mptm_extras
USER_TARGETS := mptm_user mptm_extras_user
XDP_TARGETS := ${XDP_PROGS:=.o}
USER_LIBS := -lbpf -lm
$(info XDP_TARGETS is [${XDP_TARGETS}])
$(info USER_TARGETS is [${USER_TARGETS}])
$(info MPTM_DEBUG is [${MPTM_DEBUG}])
LIBBPF_DIR = ${DEPS}/libbpf/src
COMMON_DIR = ${DEPS}/common
HEADERS_DIR = ${DEPS}/headers
EXTRA_DEPS += $(COMMON_DIR)/parsing_helpers.h
include $(COMMON_DIR)/common.mk
.PHONY: tags
tags:
ctags -e -R