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