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

MySQL数据库

开发平台:

Visual C++

  1. # Generated automatically from Makefile.in by configure.
  2. # === makefile ============================================================
  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. srctop = /home/my/tmp/BUILD/mit-pthreads
  11. srcdir = /home/my/tmp/BUILD/mit-pthreads/lib/libpthreadutil
  12. VPATH = /home/my/tmp/BUILD/mit-pthreads/lib/libpthreadutil
  13. prefix= /usr/local/pthreads
  14. exec_prefix= ${prefix}
  15. INSTALL_PATH = ${prefix}
  16.       BINDIR = $(INSTALL_PATH)/bin
  17.       LIBDIR = $(INSTALL_PATH)/lib
  18.       MANDIR = $(INSTALL_PATH)/man
  19.       INCDIR = $(INSTALL_PATH)/include
  20.           CC = ../../pgcc -notinstalled
  21.  CDEBUGFLAGS = -O6 -DDBUG_OFF   -Werror
  22.       CFLAGS = $(CDEBUGFLAGS) $(INCLUDES) $(ADDL_CFLAGS) -DSRCDIR="$(srcdir)"
  23.       RANLIB = ranlib
  24.         OBJS = pthread_tad.o pthread_atexit.o
  25.      LIBRARY = libpthreadutil.a
  26.      HEADERS = pthreadutil.h
  27. ################################################################################
  28. #
  29. all : $(LIBRARY)
  30. clean: 
  31. rm -f *.o $(TESTS) $(BENCHMARKS) a.out core maketmp makeout
  32. depend:
  33. sed '/### Dependencies/q' < Makefile > maketmp
  34. (for i in $(CSRC);do $(CPP) -M $$i;done) >> maketmp
  35. cp maketmp Makefile
  36. install: $(LIBRARY)
  37. install $(LIBRARY) $(LIBDIR)
  38. for x in $(HEADERS); 
  39. do cp $(srcdir)/$$x $(INCDIR); 
  40. done
  41. realclean: clean
  42. rm -f Makefile
  43. Makefile: Makefile.in
  44. (cd ../.. ; sh config.status)
  45. .c.o:
  46. $(CC) $(CFLAGS) -c $< 
  47. $(LIBRARY) : ${OBJS}
  48. ar r new.a ${OBJS} && 
  49. $(RANLIB) new.a && 
  50. mv -f new.a $(LIBRARY)
  51. ################################################################################
  52. ### Do not remove the following line. It is for depend #########################
  53. ### Dependencies: