forked from Imagelibrary/rtems
A bug in acpolish made it into rtems-rc-19990709-0.diff, which
unfortunately affects all Makefile.ins:
* The maintainer mode conditional was erroniously applied to the
dependencies of "Makefile".
In case you already checked in rtems-rc-19990709-0.diff to CVS you have
to check in all Makefile.ins again after applying the patch below :).
Please apply the patch below as follows:
patch -p1 < rtems-rc-19990709-1.diff
tools/update/rtems-polish.sh -ac
Note: There is no need to rerun your tests if you have used
--enable-maintainer-mode to configure RTEMS, because this patch converts
all Makefile.ins to the same settings as used for
--enable-maintainer-mode.
50 lines
1.1 KiB
Makefile
50 lines
1.1 KiB
Makefile
#
|
|
# $Id$
|
|
#
|
|
|
|
@SET_MAKE@
|
|
srcdir = @srcdir@
|
|
top_srcdir = @top_srcdir@
|
|
top_builddir = ../../../..
|
|
subdir = libbsp/i386/shared/comm
|
|
|
|
RTEMS_ROOT = @RTEMS_ROOT@
|
|
PROJECT_ROOT = @PROJECT_ROOT@
|
|
|
|
VPATH = @srcdir@
|
|
|
|
H_FILES = $(srcdir)/uart.h
|
|
|
|
#
|
|
# Equate files are for including from assembly preprocessed by
|
|
# gm4 or gasp. No examples are provided except for those for
|
|
# other CPUs. The best way to generate them would be to
|
|
# provide a program which generates the constants used based
|
|
# on the C equivalents.
|
|
#
|
|
|
|
EQ_FILES =
|
|
|
|
SRCS = $(H_FILES) $(EQ_FILES)
|
|
|
|
include $(RTEMS_ROOT)/make/custom/@RTEMS_BSP@.cfg
|
|
include $(RTEMS_ROOT)/make/leaf.cfg
|
|
|
|
INSTALL_CHANGE = @INSTALL_CHANGE@
|
|
mkinstalldirs = $(SHELL) $(top_srcdir)/@RTEMS_TOPdir@/mkinstalldirs
|
|
|
|
INSTALLDIRS = $(PROJECT_INCLUDE)
|
|
|
|
$(INSTALLDIRS):
|
|
@$(mkinstalldirs) $(INSTALLDIRS)
|
|
|
|
CLEAN_ADDITIONS +=
|
|
CLOBBER_ADDITIONS +=
|
|
|
|
preinstall all: $(SRCS)
|
|
@$(INSTALL_CHANGE) -m 644 $(SRCS) $(PROJECT_INCLUDE)
|
|
|
|
Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status
|
|
cd $(top_builddir) \
|
|
&& CONFIG_FILES=$(subdir)/$@ CONFIG_HEADERS= $(SHELL) ./config.status
|