summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJoel Sherrill <joel.sherrill@OARcorp.com>1999-04-15 18:55:55 +0000
committerJoel Sherrill <joel.sherrill@OARcorp.com>1999-04-15 18:55:55 +0000
commit3090760f0f67028938637b4fed30747c7bfcb376 (patch)
treec297f78d36fe39e26c7835fcd5e037811d9c64da
parentNow install header files that existed but were not previously installed. (diff)
downloadrtems-3090760f0f67028938637b4fed30747c7bfcb376.tar.bz2
Now compile files that previously existed but were not built because they
had not yet been debugged.
-rw-r--r--c/src/exec/posix/src/Makefile.in7
1 files changed, 5 insertions, 2 deletions
diff --git a/c/src/exec/posix/src/Makefile.in b/c/src/exec/posix/src/Makefile.in
index 1b4357463b..c10e54719c 100644
--- a/c/src/exec/posix/src/Makefile.in
+++ b/c/src/exec/posix/src/Makefile.in
@@ -16,7 +16,10 @@ PROJECT_ROOT = @PROJECT_ROOT@
VPATH = @srcdir@
# following are semi-implemented and untested
-# C_PIECES=aio cancel devctl intr mqueue semaphore time utsname
+# C_PIECES=aio cancel devctl intr mqueue semaphore utsname
+
+# These are really in the stand but not really functional
+BUILD_FOR_NOW_C_PIECES=aio cancel mqueue semaphore utsname
ENOSYS_C_PIECES=\
execl execle execlp execv execve execvp fork \
@@ -44,7 +47,7 @@ PSIGNAL_PIECES=\
C_PIECES= adasupp cond getpid key mutex $(PTHREAD_PIECES) \
$(PSIGNAL_PIECES) ptimer sched time \
- types unistd $(ENOSYS_C_PIECES)
+ types unistd $(ENOSYS_C_PIECES) $(BUILD_FOR_NOW_C_PIECES)
C_FILES=$(C_PIECES:%=%.c)
C_O_FILES=$(C_PIECES:%=${ARCH}/%.o)