forked from Imagelibrary/rtems
> 5) rtems-rc-19990202-1.diff/reorg-install.sh > > reorg-install.sh fixes a Makefile variable name clash of RTEMS > configuration files and automake/autoconf standards. > Until now, RTEMS used $(INSTALL) for install-if-change. Automake and > autoconf use $(INSTALL) for a bsd-compatible install. As > install-if-change and bsd-install are not compatible, I renamed all > references to install-if-changed to $(INSTALL_CHANGED) and used > $(INSTALL) for bsd-install (==automake/autoconf standard). When > automake will be introduced install-if-change will probably be replaced > by $(INSTALL) and therefore will slowly vanish. For the moment, this > patch fixes a very nasty problem which prevents adding any automake file > until now (There are still more).
61 lines
1.1 KiB
Makefile
61 lines
1.1 KiB
Makefile
#
|
|
# $Id$
|
|
#
|
|
|
|
@SET_MAKE@
|
|
srcdir = @srcdir@
|
|
VPATH = @srcdir@
|
|
RTEMS_ROOT = @top_srcdir@
|
|
PROJECT_ROOT = @PROJECT_ROOT@
|
|
|
|
INSTALL = @INSTALL@
|
|
|
|
# we use host compiler here for gensize. Hopefully it has same alignment!!
|
|
USE_HOST_COMPILER=yes
|
|
|
|
# C source names, if any, go here -- minus the .c
|
|
C_PIECES=gensize
|
|
C_FILES=$(C_PIECES:%=%.c)
|
|
C_O_FILES=$(C_PIECES:%=${ARCH}/%.o)
|
|
|
|
H_FILES=
|
|
|
|
SRCS=$(C_FILES) $(H_FILES)
|
|
OBJS=$(C_O_FILES)
|
|
|
|
PGMS=${ARCH}/gensize
|
|
|
|
include $(RTEMS_ROOT)/make/custom/$(RTEMS_BSP).cfg
|
|
include $(RTEMS_ROOT)/make/leaf.cfg
|
|
|
|
# We use files that have not been installed yet.
|
|
CPU_DIR=../../cpu/$(RTEMS_CPU)
|
|
|
|
#
|
|
# (OPTIONAL) Add local stuff here using +=
|
|
#
|
|
|
|
DEFINES +=
|
|
CPPFLAGS += -I$(PROJECT_INCLUDE) \
|
|
-I$(CPU_DIR)
|
|
CFLAGS +=
|
|
|
|
LD_PATHS +=
|
|
LD_LIBS +=
|
|
LDFLAGS +=
|
|
|
|
#
|
|
# Add your list of files to delete here.
|
|
#
|
|
|
|
CLEAN_ADDITIONS +=
|
|
CLOBBER_ADDITIONS +=
|
|
|
|
all: preinstall
|
|
|
|
preinstall: ${ARCH} $(SRCS) $(PGMS)
|
|
$(INSTALL) $(INSTBINFLAGS) $(PGMS) ${PROJECT_RELEASE}/bin
|
|
|
|
# Install the program(s), appending _g or _p as appropriate.
|
|
# for include files, just use $(INSTALL_CHANGE)
|