]> git.droids-corp.org - dpdk.git/blobdiff - examples/load_balancer/Makefile
eventdev: promote adapter functions as stable
[dpdk.git] / examples / load_balancer / Makefile
index fc8df71e8eb5d6f7f9be335faa8fd23100673ec4..d4b145ca17140fcbef418b86f5f1f7eb8f4462d0 100644 (file)
@@ -43,14 +43,13 @@ ifeq ($(RTE_SDK),)
 $(error "Please define RTE_SDK environment variable")
 endif
 
-# Default target, can be overridden by command line or environment
-RTE_TARGET ?= x86_64-native-linuxapp-gcc
+# Default target, detect a build directory, by looking for a path with a .config
+RTE_TARGET ?= $(notdir $(abspath $(dir $(firstword $(wildcard $(RTE_SDK)/*/.config)))))
 
 include $(RTE_SDK)/mk/rte.vars.mk
 
 CFLAGS += -O3 -g
 CFLAGS += $(WERROR_FLAGS)
-CFLAGS_config.o := -D_GNU_SOURCE
 
 # workaround for a gcc bug with noreturn attribute
 # http://gcc.gnu.org/bugzilla/show_bug.cgi?id=12603