From 4e36a2f133c68aaf637e166385eff1a05b59f38e Mon Sep 17 00:00:00 2001 From: Joel Sherrill Date: Mon, 31 Jan 2000 15:27:02 +0000 Subject: Patches rtems-rc-20000118-3.diff and rtems-rc-20000118-4.diff from Ralf Corsepius that contain: * Modifications, (minor) corrections, cleanups to most existing Makefile.ams * Adds automake support to all remaining BSPs which have not yet been converted to automake. * Makefile.am for all remaining wrapup/Makefile.ams --- cpukit/libmisc/dummy/Makefile.am | 31 +++++++++++++------------------ 1 file changed, 13 insertions(+), 18 deletions(-) (limited to 'cpukit/libmisc/dummy') diff --git a/cpukit/libmisc/dummy/Makefile.am b/cpukit/libmisc/dummy/Makefile.am index 5d3026cc53..ba67d1a561 100644 --- a/cpukit/libmisc/dummy/Makefile.am +++ b/cpukit/libmisc/dummy/Makefile.am @@ -1,41 +1,36 @@ -# -# $Id$ -# +## +## $Id$ +## AUTOMAKE_OPTIONS = foreign 1.4 PGMNAME = dummy -PGM = ${ARCH}/$(PGMNAME).rel +PGM = $(ARCH)/$(PGMNAME).rel -# C source names, if any, go here -- minus the .c C_FILES = dummy.c -C_O_FILES = $(C_FILES:%.c=${ARCH}/%.o) +C_O_FILES = $(C_FILES:%.c=$(ARCH)/%.o) -SRCS = $(C_FILES) OBJS = $(C_O_FILES) include $(RTEMS_ROOT)/make/custom/@RTEMS_BSP@.cfg -include $(RTEMS_ROOT)/make/lib.cfg - -TMPINSTALL_FILES = \ -$(PROJECT_INCLUDE)/rtems \ -$(PROJECT_RELEASE)/lib/$(PGMNAME)$(LIB_VARIANT).rel - -$(PROJECT_INCLUDE)/rtems: - @$(mkinstalldirs) $@ +include $(top_srcdir)/../../../automake/lib.am # # (OPTIONAL) Add local stuff here using += # -${PGM}: ${OBJS} +$(PGM): $(OBJS) $(make-rel) $(PROJECT_RELEASE)/lib/$(PGMNAME)$(LIB_VARIANT).rel: $(PGM) $(INSTALL_DATA) $< $@ -all: ${ARCH} $(TMPINSTALL_FILES) +TMPINSTALL_FILES += $(PROJECT_RELEASE)/lib/$(PGMNAME)$(LIB_VARIANT).rel + +all-local: $(ARCH) $(OBJS) $(PGM) $(TMPINSTALL_FILES) + +.PRECIOUS: $(PGM) -EXTRA_DIST = $(C_FILES) +EXTRA_DIST = README dummy.c include $(top_srcdir)/../../../automake/local.am -- cgit v1.2.3