a9de470cc7
Since all other apps have been moved to the "app" folder, the autotest app remains alone in the test folder. Rather than having an entire top-level folder for this, we can move it back to where it all started in early versions of DPDK - the "app/" folder. This move has a couple of advantages: * This reduces clutter at the top level of the project, due to one less folder. * It eliminates the separate build task necessary for building the autotests using make "make test-build" which means that developers are less likely to miss something in their own compilation tests * It re-aligns the final location of the test binary in the app folder when building with make with it's location in the source tree. For meson builds, the autotest app is different from the other apps in that it needs a series of different test cases defined for it for use by "meson test". Therefore, it does not get built as part of the main loop in the app folder, but gets built separately at the end. Signed-off-by: Bruce Richardson <bruce.richardson@intel.com>
73 lines
1.8 KiB
Makefile
73 lines
1.8 KiB
Makefile
# SPDX-License-Identifier: BSD-3-Clause
|
|
# Copyright(c) 2010-2015 Intel Corporation
|
|
|
|
#
|
|
# include rte.vars.mk if config file exists
|
|
#
|
|
ifeq (,$(wildcard $(RTE_OUTPUT)/.config))
|
|
$(error "need a make config first")
|
|
else
|
|
include $(RTE_SDK)/mk/rte.vars.mk
|
|
endif
|
|
|
|
# allow exec-env specific targets
|
|
-include $(RTE_SDK)/mk/exec-env/$(RTE_EXEC_ENV)/rte.custom.mk
|
|
|
|
buildtools: | lib
|
|
kernel: | lib
|
|
drivers: | lib buildtools
|
|
app: | lib buildtools drivers
|
|
test: | lib buildtools drivers
|
|
|
|
#
|
|
# build and clean targets
|
|
#
|
|
|
|
CLEANDIRS = $(addsuffix _clean,$(ROOTDIRS-y) $(ROOTDIRS-n) $(ROOTDIRS-))
|
|
|
|
.PHONY: build
|
|
build: $(ROOTDIRS-y)
|
|
@echo "Build complete [$(RTE_TARGET)]"
|
|
|
|
.PHONY: clean
|
|
clean: $(CLEANDIRS)
|
|
@rm -rf $(RTE_OUTPUT)/include $(RTE_OUTPUT)/app \
|
|
$(RTE_OUTPUT)/lib \
|
|
$(RTE_OUTPUT)/hostlib $(RTE_OUTPUT)/kmod
|
|
@[ -d $(RTE_OUTPUT)/include ] || mkdir -p $(RTE_OUTPUT)/include
|
|
@$(RTE_SDK)/buildtools/gen-config-h.sh $(RTE_OUTPUT)/.config \
|
|
> $(RTE_OUTPUT)/include/rte_config.h
|
|
$(Q)$(MAKE) -f $(RTE_SDK)/GNUmakefile gcovclean
|
|
@echo Clean complete
|
|
|
|
.SECONDEXPANSION:
|
|
.PHONY: $(ROOTDIRS-y) $(ROOTDIRS-)
|
|
$(ROOTDIRS-y) $(ROOTDIRS-):
|
|
@[ -d $(BUILDDIR)/$@ ] || mkdir -p $(BUILDDIR)/$@
|
|
@echo "== Build $@"
|
|
$(Q)$(MAKE) S=$@ -f $(RTE_SRCDIR)/$@/Makefile -C $(BUILDDIR)/$@ all
|
|
@if [ $@ = drivers ]; then \
|
|
$(MAKE) -f $(RTE_SDK)/mk/rte.combinedlib.mk; \
|
|
fi
|
|
|
|
%_clean:
|
|
@echo "== Clean $*"
|
|
$(Q)if [ -f $(RTE_SRCDIR)/$*/Makefile -a -d $(BUILDDIR)/$* ]; then \
|
|
$(MAKE) S=$* -f $(RTE_SRCDIR)/$*/Makefile -C $(BUILDDIR)/$* clean ; \
|
|
fi
|
|
|
|
RTE_MAKE_SUBTARGET ?= all
|
|
|
|
%_sub: $(addsuffix _sub,$(*))
|
|
@echo $(addsuffix _sub,$(*))
|
|
@[ -d $(BUILDDIR)/$* ] || mkdir -p $(BUILDDIR)/$*
|
|
@echo "== Build $*"
|
|
$(Q)$(MAKE) S=$* -f $(RTE_SRCDIR)/$*/Makefile -C $(BUILDDIR)/$* \
|
|
$(RTE_MAKE_SUBTARGET)
|
|
|
|
.PHONY: all
|
|
all: build
|
|
|
|
.PHONY: FORCE
|
|
FORCE:
|