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).
39 lines
792 B
Makefile
39 lines
792 B
Makefile
#
|
|
# $Id$
|
|
#
|
|
# RTEMS build tools
|
|
# NOTE: of course we can't use any of these tools
|
|
# in this Makefile. Most notably: install-if-change
|
|
#
|
|
|
|
@SET_MAKE@
|
|
srcdir = @srcdir@
|
|
VPATH = @srcdir@
|
|
RTEMS_ROOT = @top_srcdir@
|
|
PROJECT_ROOT = @PROJECT_ROOT@
|
|
|
|
INSTALL = @INSTALL@
|
|
|
|
include $(RTEMS_ROOT)/make/custom/$(RTEMS_BSP).cfg
|
|
include $(RTEMS_ROOT)/make/leaf.cfg
|
|
include $(RTEMS_ROOT)/make/rtems.cfg
|
|
|
|
DESTDIR=$(PROJECT_RELEASE)/build-tools
|
|
|
|
BUILD_PGMS=install-if-change rcs-clean lock-directory unlock-directory
|
|
PGMS = $(BUILD_PGMS) search-id.sh
|
|
|
|
CLEAN_ADDITIONS += $(BUILD_PGMS)
|
|
|
|
INSTALLED_PGMS=$(PGMS:%=$(DESTDIR)/%)
|
|
|
|
all: $(DESTDIR) $(PGMS) install
|
|
|
|
$(DESTDIR):
|
|
@top_srcdir@/mkinstalldirs $@
|
|
|
|
$(INSTALLED_PGMS): $(PGMS)
|
|
$(INSTALL) $(INSTBINFLAGS) $^ $(DESTDIR)
|
|
|
|
install: $(DESTDIR) $(INSTALLED_PGMS)
|