ossp-pkg/pth/Makefile.in 1.147 -> 1.148
--- Makefile.in 2002/10/15 20:34:22 1.147
+++ Makefile.in 2002/11/03 09:59:32 1.148
@@ -88,19 +88,19 @@
TARGET_LIBS = libpth.la @LIBPTHREAD_LA@
TARGET_MANS = $(S)pth-config.1 $(S)pth.3 @PTHREAD_CONFIG_1@ @PTHREAD_3@
TARGET_TEST = test_std test_mp test_misc test_philo test_sig \
- test_select test_httpd test_sfio @TEST_PTHREAD@
+ test_select test_httpd test_sfio test_uctx @TEST_PTHREAD@
# object files for library generation
# (order is just aesthically important)
-LOBJS = pth_debug.lo pth_ring.lo pth_pqueue.lo pth_time.lo pth_errno.lo \
- pth_mctx.lo pth_tcb.lo pth_sched.lo pth_attr.lo pth_lib.lo pth_event.lo \
+LOBJS = pth_debug.lo pth_ring.lo pth_pqueue.lo pth_time.lo pth_errno.lo pth_mctx.lo \
+ pth_uctx.lo pth_tcb.lo pth_sched.lo pth_attr.lo pth_lib.lo pth_event.lo \
pth_data.lo pth_clean.lo pth_cancel.lo pth_msg.lo pth_sync.lo pth_fork.lo \
pth_util.lo pth_high.lo pth_syscall.lo pth_ext.lo pth_compat.lo pth_string.lo
# source files for header generation
# (order is important and has to follow dependencies in pth_p.h)
HSRCS = $(S)pth_compat.c $(S)pth_debug.c $(S)pth_syscall.c $(S)pth_errno.c $(S)pth_ring.c $(S)pth_mctx.c \
- $(S)pth_clean.c $(S)pth_time.c $(S)pth_tcb.c $(S)pth_util.c $(S)pth_pqueue.c $(S)pth_event.c \
+ $(S)pth_uctx.c $(S)pth_clean.c $(S)pth_time.c $(S)pth_tcb.c $(S)pth_util.c $(S)pth_pqueue.c $(S)pth_event.c \
$(S)pth_sched.c $(S)pth_data.c $(S)pth_msg.c $(S)pth_cancel.c $(S)pth_sync.c $(S)pth_attr.c $(S)pth_lib.c \
$(S)pth_fork.c $(S)pth_high.c $(S)pth_ext.c $(S)pth_string.c
@@ -209,6 +209,8 @@
$(LIBTOOL) --mode=link --quiet $(CC) $(LDFLAGS) -o test_select test_select.o test_common.o libpth.la $(LIBS)
test_sfio: test_sfio.o test_common.o libpth.la
$(LIBTOOL) --mode=link --quiet $(CC) $(LDFLAGS) -o test_sfio test_sfio.o test_common.o libpth.la $(LIBS)
+test_uctx: test_uctx.o test_common.o libpth.la
+ $(LIBTOOL) --mode=link --quiet $(CC) $(LDFLAGS) -o test_uctx test_uctx.o test_common.o libpth.la $(LIBS)
test_pthread: test_pthread.o test_common.o libpthread.la
$(LIBTOOL) --mode=link --quiet $(CC) $(LDFLAGS) -o test_pthread test_pthread.o test_common.o libpthread.la $(LIBS)
@@ -371,6 +373,8 @@
./test_select
test-sfio: test_sfio
./test_sfio
+test-uctx: test_uctx
+ ./test_uctx
test-pthread: test_pthread
./test_pthread
debug: debug-std
@@ -390,6 +394,8 @@
TEST=test_select && $(_DEBUG)
debug-sfio: test_sfio
TEST=test_sfio && $(_DEBUG)
+debug-uctx: test_uctx
+ TEST=test_uctx && $(_DEBUG)
debug-pthread: test_pthread
TEST=test_pthread && $(_DEBUG)
@@ -445,5 +451,6 @@
test_pthread.o: test_pthread.c pthread.h
test_select.o: test_select.c pth.h
test_sfio.o: test_sfio.c pth.h
+test_uctx.o: test_uctx.c pth.h
test_sig.o: test_sig.c pth.h
test_std.o: test_std.c pth.h
|
|