Makefile.in
上传用户:tsgydb
上传日期:2007-04-14
资源大小:10674k
文件大小:5k
源码类别:

MySQL数据库

开发平台:

Visual C++

  1. # === GNUmakefile ============================================================
  2. # Copyright (c) 1993 Chris Provenzano, proven@athena.mit.edu
  3. #
  4. # Description: This file is for creating the test programs for libpthread.a
  5. #
  6. # 1.00 93/08/03 proven
  7. # -Initial cut for pthreads.
  8. #
  9. CC = ../pgcc -notinstalled
  10. CPP = @CPP@
  11. srctop = @srctop@
  12. srcdir = @srctop@/tests
  13. VPATH = @srctop@/tests
  14. CDEBUGFLAGS = @CFLAGS@
  15. INCLUDES= -I../include -I.. -I$(srctop)/include
  16. CFLAGS = $(CDEBUGFLAGS) $(INCLUDES) $(ADDL_CFLAGS) -DSRCDIR="$(srcdir)"
  17. LIBS = -lm -lgcc -L../obj/ -lpthread
  18. #LIBS = -static 
  19. # This list used to include test_select, but that test doesn't terminate.
  20. TESTS = test_create test_pthread_join test_switch test_sleep test_readdir 
  21. test_fork test_execve test_preemption test_preemption_float 
  22. test_sock_1 test_sock_2 test_stdio_1 test_pthread_mutex 
  23. test_pthread_cond_timedwait test_netdb test_pw test_cwd
  24. # This list used to include p_bench_semaphore, but the semaphore support isn't
  25. # defined for all targets (or used for any).
  26. BENCHMARKS = p_bench_read p_bench_mutex p_bench_yield 
  27. p_bench_getpid p_bench_pthread_create
  28. all : $(TESTS) $(BENCHMARKS)
  29. check : $(TESTS)
  30. set -e ; 
  31. for i in $(TESTS) ; do 
  32.   echo Running test $$i ... ; 
  33.   ./$$i ; 
  34. done
  35. # More flags
  36. ADDITIONALFLAGS = -DPTHREAD_INITIAL_PORT
  37. ################################################################################
  38. #
  39. clean: 
  40. rm -f *.o $(TESTS) $(BENCHMARKS) a.out core maketmp makeout
  41. depend:
  42. sed '/### Dependencies/q' < Makefile > maketmp
  43. (for i in $(CSRC);do $(CPP) -M $$i;done) >> maketmp
  44. cp maketmp Makefile
  45. install:
  46. realclean: clean
  47. rm -f Makefile
  48. .c.o:
  49. $(CC) $(CFLAGS) -c $<
  50. Makefile: Makefile.in
  51. (cd .. ; sh config.status)
  52. test_create : test_create.o ../libpthread.a
  53. $(CC) $(CFLAGS) -o test_create test_create.o $(LIBS)
  54. test_pthread_join : test_pthread_join.o ../libpthread.a
  55. $(CC) $(CFLAGS) -o test_pthread_join test_pthread_join.o $(LIBS)
  56. test_switch : test_switch.o ../libpthread.a
  57. $(CC) $(CFLAGS) -o test_switch test_switch.o $(LIBS)
  58. test_sleep : test_sleep.o ../libpthread.a
  59. $(CC) $(CFLAGS) -o test_sleep test_sleep.o $(LIBS)
  60. test_readdir : test_readdir.o ../libpthread.a
  61. $(CC) $(CFLAGS) -o test_readdir test_readdir.o $(LIBS)
  62. test_fork : test_fork.o ../libpthread.a
  63. $(CC) $(CFLAGS) -o test_fork test_fork.o $(LIBS)
  64. test_execve : test_execve.o ../libpthread.a
  65. $(CC) $(CFLAGS) -o test_execve test_execve.o $(LIBS)
  66. test_preemption : test_preemption.o ../libpthread.a
  67. $(CC) $(CFLAGS) -o test_preemption test_preemption.o $(LIBS)
  68. test_preemption_float : test_preemption_float.o ../libpthread.a
  69. $(CC) $(CFLAGS) -o test_preemption_float test_preemption_float.o $(LIBS)
  70. test_stdio_1 : test_stdio_1.o ../libpthread.a
  71. $(CC) $(CFLAGS) -o test_stdio_1 test_stdio_1.o $(LIBS)
  72. test_sock_1 : test_sock_1.o ../libpthread.a
  73. $(CC) $(CFLAGS) -o test_sock_1 test_sock_1.o $(LIBS)
  74. test_sock_2 : test_sock_2a test_sock_2.o ../libpthread.a
  75. $(CC) $(CFLAGS) -o test_sock_2 test_sock_2.o $(LIBS)
  76. test_sock_2a : test_sock_2a.o ../libpthread.a
  77. $(CC) $(CFLAGS) -o test_sock_2a test_sock_2a.o $(LIBS)
  78. test_pthread_mutex : test_pthread_mutex.o ../libpthread.a
  79. $(CC) $(CFLAGS) -o test_pthread_mutex test_pthread_mutex.o $(LIBS)
  80. test_pthread_cond_timedwait : test_pthread_cond_timedwait.o ../libpthread.a
  81. $(CC) $(CFLAGS) -o test_pthread_cond_timedwait test_pthread_cond_timedwait.o $(LIBS)
  82. test_netdb : test_netdb.o ../libpthread.a
  83. $(CC) $(CFLAGS) -o test_netdb test_netdb.o $(LIBS)
  84. test_select : test_select.o ../obj/libpthread.a
  85. $(CC) $(CFLAGS) -o test_select test_select.o $(LIBS)
  86. test_pw : test_pw.o ../obj/libpthread.a
  87. $(CC) $(CFLAGS) -o test_pw test_pw.o $(LIBS)
  88. test_cwd : test_cwd.o ../obj/libpthread.a
  89. $(CC) $(CFLAGS) -o test_cwd test_cwd.o $(LIBS)
  90. p_bench_read : p_bench_read.o ../libpthread.a
  91. $(CC) $(CFLAGS) -o p_bench_read p_bench_read.o $(LIBS)
  92. p_bench_semaphore : p_bench_semaphore.o ../libpthread.a
  93. $(CC) $(CFLAGS) -o p_bench_semaphore p_bench_semaphore.o $(LIBS)
  94. p_bench_mutex : p_bench_mutex.o ../libpthread.a
  95. $(CC) $(CFLAGS) -o p_bench_mutex p_bench_mutex.o $(LIBS)
  96. p_bench_yield : p_bench_yield.o ../libpthread.a
  97. $(CC) $(CFLAGS) -o p_bench_yield p_bench_yield.o $(LIBS)
  98. p_bench_getpid : p_bench_getpid.o ../libpthread.a
  99. $(CC) $(CFLAGS) -o p_bench_getpid p_bench_getpid.o $(LIBS)
  100. p_bench_pthread_create : p_bench_pthread_create.o ../libpthread.a
  101. $(CC) $(CFLAGS) -o p_bench_pthread_create p_bench_pthread_create.o $(LIBS)
  102. test_create.o : test_create.c
  103. test_pthread_join.o : test_pthread_join.c
  104. test_switch.o : test_switch.c
  105. test_sleep.o : test_sleep.c
  106. test_readdir.o : test_readdir.c
  107. test_fork.o : test_fork.c
  108. test_execve.o : test_execve.c
  109. test_preemption.o : test_preemption.c
  110. test_preemption_float.o : test_preemption_float.c
  111. test_sock_1.o : test_sock_1.c
  112. test_sock_2.o : test_sock_2.c
  113. test_sock_3.o : test_sock_3.c
  114. test_stdio_1.o : test_stdio_1.c
  115. test_pthread_mutex.o : test_pthread_mutex.c
  116. test_pthread_cond_timedwait.o : test_pthread_cond_timedwait.c
  117. p_bench_read.o : p_bench_read.c
  118. p_bench_semaphore.o : p_bench_semaphore.c
  119. p_bench_mutex.o : p_bench_mutex.c
  120. p_bench_yield.o : p_bench_yield.c
  121. p_bench_getpid.o : p_bench_getpid.c
  122. p_bench_pthread_create.o : p_bench_pthread_create.c
  123. ################################################################################
  124. ### Do not remove the following line. It is for depend #########################
  125. ### Dependencies: