forked from pktgen/Pktgen-DPDK
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Makefile
57 lines (40 loc) · 944 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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
# SPDX-License-Identifier: BSD-3-Clause
# Copyright(c) 2019-2020 Intel Corporation
#
# Head Makefile for compiling Pktgen-DPDK, but just a wrapper around
# meson and ninja using the tools/pktgen-build.sh script.
#
# Use 'make' or 'make build' to build Pktgen-DPDK. If the build directory does
# not exist it will be created with these two build types.
#
Build=./tools/pktgen-build.sh
build: FORCE
${Build} build
rebuild: FORCE
${Build} clean build
buildlua: FORCE
${Build} clean buildlua
debuglua: FORCE
${Build} clean debuglua
buildgui: FORCE
${Build} clean buildgui
rebuildgui: FORCE
${Build} clean buildgui
debug: FORCE
${Build} clean debug
debugopt: FORCE
${Build} clean debugopt
clean: FORCE
${Build} clean
install: FORCE
${Build} install
uninstall: FORCE
${Build} uninstall
docs: FORCE
${Build} docs
doc: FORCE
${Build} docs
help: FORCE
${Build} help
FORCE:
@echo ">>> Use 'make help' for more commands\n"