1# SPDX-License-Identifier: BSD-3-Clause 2# Copyright(c) 2020 Intel Corporation 3 4# binary name 5APP = pipeline 6 7# all source are stored in SRCS-y 8SRCS-y += conn.c 9SRCS-y += main.c 10SRCS-y += obj.c 11SRCS-y += thread.c 12 13# Build using pkg-config variables if possible 14ifneq ($(shell pkg-config --exists libdpdk && echo 0),0) 15$(error "no installation of DPDK found") 16endif 17 18all: shared 19.PHONY: shared static 20shared: build/$(APP)-shared 21 ln -sf $(APP)-shared build/$(APP) 22static: build/$(APP)-static 23 ln -sf $(APP)-static build/$(APP) 24 25PKGCONF ?= pkg-config 26 27PC_FILE := $(shell $(PKGCONF) --path libdpdk 2>/dev/null) 28CFLAGS += -O3 $(shell $(PKGCONF) --cflags libdpdk) 29LDFLAGS_SHARED = $(shell $(PKGCONF) --libs libdpdk) 30LDFLAGS_STATIC = $(shell $(PKGCONF) --static --libs libdpdk) 31 32CFLAGS += -I. -DALLOW_EXPERIMENTAL_API -D_GNU_SOURCE 33 34OBJS := $(patsubst %.c,build/%.o,$(SRCS-y)) 35 36build/%.o: %.c Makefile $(PC_FILE) | build 37 $(CC) $(CFLAGS) -c $< -o $@ 38 39build/$(APP)-shared: $(OBJS) 40 $(CC) $(OBJS) -o $@ $(LDFLAGS) $(LDFLAGS_SHARED) 41 42build/$(APP)-static: $(OBJS) 43 $(CC) $(OBJS) -o $@ $(LDFLAGS) $(LDFLAGS_STATIC) 44 45build: 46 @mkdir -p $@ 47 48.PHONY: clean 49clean: 50 rm -f build/$(APP)* build/*.o 51 test -d build && rmdir -p build || true 52