aboutsummaryrefslogtreecommitdiffstats
path: root/test/dring/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'test/dring/Makefile')
-rw-r--r--test/dring/Makefile26
1 files changed, 4 insertions, 22 deletions
diff --git a/test/dring/Makefile b/test/dring/Makefile
index 6549744..8141512 100644
--- a/test/dring/Makefile
+++ b/test/dring/Makefile
@@ -11,32 +11,14 @@
# See the License for the specific language governing permissions and
# limitations under the License.
-ifeq ($(RTE_SDK),)
-$(error "Please define RTE_SDK environment variable")
-endif
-
-ifeq ($(RTE_TARGET),)
-$(error "Please define RTE_TARGET environment variable")
-endif
-
-ifeq ($(TLDK_ROOT),)
-$(error "Please define TLDK_ROOT environment variable")
-endif
-
-include $(RTE_SDK)/mk/rte.vars.mk
-
# binary name
-APP = test_dring
+APP_NAME = test_dring
+
+include $(TLDK_ROOT)/mk/tle.var.mk
# all source are stored in SRCS-y
SRCS-y += test_dring.c
-CFLAGS += $(WERROR_FLAGS)
-CFLAGS += -I$(RTE_OUTPUT)/include
-
-LDLIBS += -L$(RTE_OUTPUT)/lib
-LDLIBS += -ltle_dring
-
-EXTRA_CFLAGS += -O3
+LIB_DEPS += tle_dring
include $(TLDK_ROOT)/mk/tle.app.mk