-
Notifications
You must be signed in to change notification settings - Fork 120
/
Makefile
51 lines (36 loc) · 860 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
# SPDX-License-Identifier: BSD-3-Clause
# Copyright(c) <2019-2024> 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
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"