X-Git-Url: http://git.droids-corp.org/?a=blobdiff_plain;f=app%2Ftest%2FMakefile;h=39fa163decb71c3fef3ff30003a2e3175b463a79;hb=e9d48c0072d36eb6423b45fba4ec49d0def6c36f;hp=a596ef8aedec9bb607cfcdf32bda46adc345e44c;hpb=24f42575dfe2226f126546d0ca501cba9fbd6373;p=dpdk.git diff --git a/app/test/Makefile b/app/test/Makefile old mode 100755 new mode 100644 index a596ef8aed..39fa163dec --- a/app/test/Makefile +++ b/app/test/Makefile @@ -1,6 +1,6 @@ # BSD LICENSE # -# Copyright(c) 2010-2013 Intel Corporation. All rights reserved. +# Copyright(c) 2010-2014 Intel Corporation. All rights reserved. # All rights reserved. # # Redistribution and use in source and binary forms, with or without @@ -89,13 +89,25 @@ SRCS-$(CONFIG_RTE_APP_TEST) += test_red.c SRCS-$(CONFIG_RTE_APP_TEST) += test_sched.c SRCS-$(CONFIG_RTE_APP_TEST) += test_meter.c SRCS-$(CONFIG_RTE_APP_TEST) += test_kni.c -SRCS-$(CONFIG_RTE_APP_TEST) += test_pmac_acl.c SRCS-$(CONFIG_RTE_APP_TEST) += test_power.c SRCS-$(CONFIG_RTE_APP_TEST) += test_common.c +SRCS-$(CONFIG_RTE_APP_TEST) += test_timer_perf.c + +ifeq ($(CONFIG_RTE_APP_TEST),y) +SRCS-$(CONFIG_RTE_LIBRTE_ACL) += test_acl.c +SRCS-$(CONFIG_RTE_LIBRTE_PMD_RING) += test_pmd_ring.c +endif CFLAGS += -O3 CFLAGS += $(WERROR_FLAGS) +# Disable warnings of deprecated-declarations in test_kni.c +ifeq ($(CC), icc) +CFLAGS_test_kni.o += -wd1478 +else +CFLAGS_test_kni.o += -Wno-deprecated-declarations +endif + # this application needs libraries first DEPDIRS-$(CONFIG_RTE_APP_TEST) += lib