summaryrefslogtreecommitdiffstats
path: root/c/src/exec/rtems/src/Makefile.in
diff options
context:
space:
mode:
authorJoel Sherrill <joel.sherrill@OARcorp.com>1999-05-17 22:58:30 +0000
committerJoel Sherrill <joel.sherrill@OARcorp.com>1999-05-17 22:58:30 +0000
commitc06d8f64671da8f2a1afeb8b3313f064e7257de3 (patch)
tree6afa4aa8420e16b3f87dd6e24d701a7dbaaf6fbb /c/src/exec/rtems/src/Makefile.in
parentMoved some MP routines to semmp.c. (diff)
downloadrtems-c06d8f64671da8f2a1afeb8b3313f064e7257de3.tar.bz2
Split the Semaphore Manager into one routine per file.
Diffstat (limited to 'c/src/exec/rtems/src/Makefile.in')
-rw-r--r--c/src/exec/rtems/src/Makefile.in6
1 files changed, 5 insertions, 1 deletions
diff --git a/c/src/exec/rtems/src/Makefile.in b/c/src/exec/rtems/src/Makefile.in
index f65d4e7821..b16c849ecc 100644
--- a/c/src/exec/rtems/src/Makefile.in
+++ b/c/src/exec/rtems/src/Makefile.in
@@ -36,9 +36,13 @@ MESSAGE_QUEUE_PIECES=\
msgqflush msgqgetnumberpending msgqident msgqreceive \
msgqsend msgqsubmit msgqtranslatereturncode msgqurgent
+SEMAPHORE_PIECES=\
+ sem semcreate semdelete semident semobtain semrelease \
+ semtranslatereturncode
+
C_PIECES=attr $(CLOCK_PIECES) dpmem event intr intrbody \
$(MESSAGE_QUEUE_PIECES) \
- part ratemon $(REGION_PIECES) sem signal \
+ part ratemon $(REGION_PIECES) $(SEMAPHORE_PIECES) signal \
$(TASK_PIECES) timer $(MP_PIECES)
C_FILES=$(C_PIECES:%=%.c)
C_O_FILES=$(C_PIECES:%=${ARCH}/%.o)