diff options
| author | Bruce Richardson <[email protected]> | 2017-09-25 17:28:49 +0100 |
|---|---|---|
| committer | Bruce Richardson <[email protected]> | 2018-01-30 21:58:59 +0100 |
| commit | 0eba4ade654bae51877474fb64ab5e79df0f3442 (patch) | |
| tree | 445db81893d9bb7a3b135298f7188de21b8d552f /examples/timer | |
| parent | 89f0711f9ddfb5822da9d34f384b92f72a61c4dc (diff) | |
examples: put app name and sources at top of makefiles
Reorder the text in the makefiles, so that the app name and the source
files are listed first. This then will allow them to be shared later in a
combined makefile building with pkg-config and RTE_SDK-based build system.
Signed-off-by: Bruce Richardson <[email protected]>
Reviewed-by: Luca Boccassi <[email protected]>
Diffstat (limited to 'examples/timer')
| -rw-r--r-- | examples/timer/Makefile | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/examples/timer/Makefile b/examples/timer/Makefile index 4ae21239db..e1491ed1ca 100644 --- a/examples/timer/Makefile +++ b/examples/timer/Makefile @@ -1,6 +1,12 @@ # SPDX-License-Identifier: BSD-3-Clause # Copyright(c) 2010-2014 Intel Corporation +# binary name +APP = timer + +# all source are stored in SRCS-y +SRCS-y := main.c + ifeq ($(RTE_SDK),) $(error "Please define RTE_SDK environment variable") endif @@ -10,12 +16,6 @@ RTE_TARGET ?= x86_64-native-linuxapp-gcc include $(RTE_SDK)/mk/rte.vars.mk -# binary name -APP = timer - -# all source are stored in SRCS-y -SRCS-y := main.c - CFLAGS += -O3 CFLAGS += $(WERROR_FLAGS) |
