Makefile
Upload User: tsgydb
Upload Date: 2007-04-14
Package Size: 10674k
Code Size: 5k
Category:

MySQL

Development Platform:

Visual C++

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