05e1cedb7d74b48247ef4fd21dac7becb9ab6327
[dpdk.git] / examples / vhost_scsi / Makefile
1 # SPDX-License-Identifier: BSD-3-Clause
2 # Copyright(c) 2010-2017 Intel Corporation
3
4 # binary name
5 APP = vhost-scsi
6
7 # all source are stored in SRCS-y
8 SRCS-y := scsi.c vhost_scsi.c
9
10 # Build using pkg-config variables if possible
11 ifeq ($(shell pkg-config --exists libdpdk && echo 0),0)
12
13 all: shared
14 .PHONY: shared static
15 shared: build/$(APP)-shared
16         ln -sf $(APP)-shared build/$(APP)
17 static: build/$(APP)-static
18         ln -sf $(APP)-static build/$(APP)
19
20 CFLAGS += -D_FILE_OFFSET_BITS=64
21 LDFLAGS += -pthread
22
23 PKGCONF=pkg-config --define-prefix
24
25 PC_FILE := $(shell $(PKGCONF) --path libdpdk)
26 CFLAGS += -O3 $(shell $(PKGCONF) --cflags libdpdk)
27 LDFLAGS_SHARED = $(shell $(PKGCONF) --libs libdpdk)
28 LDFLAGS_STATIC = -Wl,-Bstatic $(shell $(PKGCONF) --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         test -d build && rmdir -p build || true
43
44 else # Build using legacy build system
45
46 ifeq ($(RTE_SDK),)
47 $(error "Please define RTE_SDK environment variable")
48 endif
49
50 # Default target, detect a build directory, by looking for a path with a .config
51 RTE_TARGET ?= $(notdir $(abspath $(dir $(firstword $(wildcard $(RTE_SDK)/*/.config)))))
52
53 include $(RTE_SDK)/mk/rte.vars.mk
54
55 ifneq ($(CONFIG_RTE_EXEC_ENV_LINUX),y)
56 $(info This application can only operate in a linux environment, \
57 please change the definition of the RTE_TARGET environment variable)
58 all:
59 else
60
61 CFLAGS += -DALLOW_EXPERIMENTAL_API
62 CFLAGS += -D_FILE_OFFSET_BITS=64
63 CFLAGS += -O2
64 CFLAGS += $(WERROR_FLAGS)
65
66 include $(RTE_SDK)/mk/rte.extapp.mk
67
68 endif
69 endif