summaryrefslogtreecommitdiffstats
path: root/c/src/optman/rtems
diff options
context:
space:
mode:
authorJoel Sherrill <joel.sherrill@OARcorp.com>1999-12-21 14:32:00 +0000
committerJoel Sherrill <joel.sherrill@OARcorp.com>1999-12-21 14:32:00 +0000
commitdb3e01084a9f489dca50ad5a834c12542fd853dc (patch)
treec8969b14b4c695dcc1cf0083ad195a7f1e5e2c2c /c/src/optman/rtems
parentPatch rtems-rc-19991203-5.diff from Ralf Corsepius <corsepiu@faw.uni-ulm.de> (diff)
downloadrtems-db3e01084a9f489dca50ad5a834c12542fd853dc.tar.bz2
Patch rtems-rc-19991203-6.diff from Ralf Corsepius <corsepiu@faw.uni-ulm.de>
which fixes a nasty dependency bug in optman/Makefile.am. Those directories have been build twice before, i.e. re-running make after having built rtems before, was rebuilding the files in optman/ directories. To apply: patch -p1 < rtems-rc-19991203-6.diff ./bootstrap
Diffstat (limited to 'c/src/optman/rtems')
-rw-r--r--c/src/optman/rtems/Makefile.am7
1 files changed, 3 insertions, 4 deletions
diff --git a/c/src/optman/rtems/Makefile.am b/c/src/optman/rtems/Makefile.am
index b7cc699a13..943e9cb210 100644
--- a/c/src/optman/rtems/Makefile.am
+++ b/c/src/optman/rtems/Makefile.am
@@ -8,9 +8,6 @@ C_FILES = no-dpmem.c no-event.c no-msg.c no-mp.c no-part.c no-region.c \
no-rtmon.c no-sem.c no-signal.c no-timer.c
C_O_FILES = $(C_FILES:%.c=${ARCH}/%.o)
-SRCS = $(C_FILES)
-OBJS = $(C_O_FILES)
-
PGMS = $(C_FILES:%.c=$(ARCH)/%.rel)
include $(RTEMS_ROOT)/make/custom/@RTEMS_BSP@.cfg
@@ -29,7 +26,9 @@ $(PROJECT_RELEASE)/lib/%$(LIB_VARIANT).rel: $(ARCH)/%.rel
AM_CFLAGS += $(CFLAGS_OS_V)
ASM4FLAGS += -I$(PROJECT_INCLUDE)/rtems
-all: ${ARCH} $(PGMS) $(TMPINSTALL_FILES)
+all-local: ${ARCH} $(PGMS) $(TMPINSTALL_FILES)
+
+.PRECIOUS: $(PGMS)
EXTRA_DIST = $(C_FILES)