1eb1bc5c7148b47eb6a48d2ed313bbca568ec09e
[dpdk.git] / examples / fips_validation / Makefile
1 # SPDX-License-Identifier: BSD-3-Clause
2 # Copyright(c) 2018 Intel Corporation
3
4 # binary name
5 APP = fips_validation
6
7 # all source are stored in SRCS-y
8 SRCS-y := fips_validation.c
9 SRCS-y += fips_validation_aes.c
10 SRCS-y += main.c
11
12 # Build using pkg-config variables if possible
13 $(shell pkg-config --exists libdpdk)
14 ifeq ($(.SHELLSTATUS),0)
15
16 all: shared
17 .PHONY: shared static
18 shared: build/$(APP)-shared
19         ln -sf $(APP)-shared build/$(APP)
20 static: build/$(APP)-static
21         ln -sf $(APP)-static build/$(APP)
22
23 PC_FILE := $(shell pkg-config --path libdpdk)
24 CFLAGS += -O3 $(shell pkg-config --cflags libdpdk)
25 LDFLAGS_SHARED = $(shell pkg-config --libs libdpdk)
26 LDFLAGS_STATIC = -Wl,-Bstatic $(shell pkg-config --static --libs libdpdk)
27
28 build/$(APP)-shared: $(SRCS-y) Makefile $(PC_FILE) | build
29         $(CC) $(CFLAGS) $(SRCS-y) -o $@ $(LDFLAGS) $(LDFLAGS_SHARED)
30
31 build/$(APP)-static: $(SRCS-y) Makefile $(PC_FILE) | build
32         $(CC) $(CFLAGS) $(SRCS-y) -o $@ $(LDFLAGS) $(LDFLAGS_STATIC)
33
34 build:
35         @mkdir -p $@
36
37 .PHONY: clean
38 clean:
39         rm -f build/$(APP) build/$(APP)-static build/$(APP)-shared
40         rmdir --ignore-fail-on-non-empty build
41
42 else
43
44 ifeq ($(RTE_SDK),)
45 $(error "Please define RTE_SDK environment variable")
46 endif
47
48 # Default target, can be overridden by command line or environment
49 RTE_TARGET ?= x86_64-native-linuxapp-gcc
50
51 INC += $(sort $(wildcard *.h))
52
53 include $(RTE_SDK)/mk/rte.vars.mk
54
55 CFLAGS += $(WERROR_FLAGS)
56
57 # workaround for a gcc bug with noreturn attribute
58 # http://gcc.gnu.org/bugzilla/show_bug.cgi?id=12603
59 ifeq ($(CONFIG_RTE_TOOLCHAIN_GCC),y)
60 CFLAGS_main.o += -Wno-return-type
61 endif
62
63 CFLAGS += -DALLOW_EXPERIMENTAL_API
64 CFLAGS += -I$(SRCDIR)
65 CFLAGS += -O3
66 CFLAGS += $(WERROR_FLAGS)
67
68 include $(RTE_SDK)/mk/rte.extapp.mk
69
70 endif