forked from Imagelibrary/rtems
FYI: I am not talking about using "make -C <dir>", which probably
is much faster on M$ hosts than RTEMS's implementation, but about
removing --enable-gmake-print support and to apply a variant of
automake's subdirectory.
Automake's subdirectory rule seems to be a little bit faster, but I
wouldn't bet on this.
Attached to this mail is my proposal.
After applying the patch, please run
cvs rm aclocal/enable-gmake-print.m4
./autogen
79 lines
1.5 KiB
INI
79 lines
1.5 KiB
INI
#
|
|
# $Id$
|
|
#
|
|
# make/main.cfg
|
|
#
|
|
# Make(1) configuration file include'd by all Makefile's
|
|
#
|
|
|
|
#
|
|
# where things are relative to PROJECT_ROOT; shouldn't need to change,
|
|
# but could be overridden in custom files.
|
|
#
|
|
|
|
PROJECT_RELEASE=$(PROJECT_ROOT)/$(RTEMS_BSP)
|
|
PROJECT_BIN=$(PROJECT_RELEASE)/bin
|
|
PROJECT_INCLUDE=$(PROJECT_RELEASE)/lib/include
|
|
PROJECT_TOOLS = $(PROJECT_RELEASE)/build-tools
|
|
|
|
#
|
|
# Target architecture; may be changed as per 'make "ARCH=${TARGET_ARCH}-debug"'
|
|
# This is where the object files get put.
|
|
#
|
|
|
|
ARCH=${TARGET_ARCH}
|
|
|
|
VARIANT=
|
|
|
|
#
|
|
# Initial target for make(1)
|
|
# Once this is established we can safely include other targets
|
|
# within this make-include file.
|
|
#
|
|
|
|
default_target: all
|
|
|
|
#
|
|
# Describe the host os
|
|
#
|
|
# include $(PROJECT_ROOT)/make/target.cfg
|
|
# include $(PROJECT_ROOT)/make/host.cfg
|
|
|
|
#
|
|
# Default makefile name
|
|
# May be overridden by command line macro assignment
|
|
#
|
|
|
|
MAKEFILE=Makefile
|
|
|
|
#
|
|
# Target variant names
|
|
# and rule to expand them into (for example): sun4 sun4-debug sun4-profile
|
|
# Note compiler config may add to TARGET_VARIANTS
|
|
#
|
|
|
|
TARGET_VARIANTS = debug profile
|
|
|
|
#
|
|
# Generate list of object directories: sun4, sun4-debug, sun4-profile
|
|
#
|
|
VARIANTS=${TARGET_ARCH} ${TARGET_VARIANTS:%=${TARGET_ARCH}-%}
|
|
|
|
#
|
|
# List of "recursion-able" targets for directory Makefiles
|
|
#
|
|
|
|
RECURSE_TARGETS=all clean protos get clobber depend install \
|
|
$(TARGET_VARIANTS) $(TARGET_VARIANTS:%=%_install)
|
|
|
|
${ARCH}:
|
|
test -d ${ARCH} || $(MKDIR) ${ARCH}
|
|
|
|
|
|
# general purpose forcing dependency; try to use .PHONY instead
|
|
FORCEIT:
|
|
|
|
FORCE:
|
|
|
|
.PHONY: $(RECURSE_TARGETS)
|