Makefile.in
上传用户:blenddy
上传日期:2007-01-07
资源大小:6495k
文件大小:1k
源码类别:

数据库系统

开发平台:

Unix_Linux

  1. #-------------------------------------------------------------------------
  2. #
  3. # Makefile--
  4. #    Makefile for the port-specific subsystem of the backend
  5. #
  6. # We have two different modes of operation: 1) put stuff specific to Port X
  7. # in subdirectory X and have that subdirectory's make file make it all, and 
  8. # 2) use conditional statements in the present make file to include what's
  9. # necessary for a specific port in our own output.  (1) came first, but (2)
  10. # is superior for many things, like when the same thing needs to be done for
  11. # multiple ports and you don't want to duplicate files in multiple 
  12. # subdirectories.  Much of the stuff done via Method 1 today should probably
  13. # be converted to Method 2.  
  14. #
  15. # IDENTIFICATION
  16. #    $Header: /usr/local/cvsroot/pgsql/src/backend/port/Makefile.in,v 1.17 1998/08/01 19:30:27 scrappy Exp $
  17. #
  18. #-------------------------------------------------------------------------
  19. SRCDIR=../..
  20. include ../../Makefile.global
  21. CFLAGS+= -I..
  22. OBJS = dynloader.o @INET_ATON@ @STRERROR@ @MISSING_RANDOM@ @SRANDOM@
  23. OBJS+= @GETHOSTNAME@ @GETRUSAGE@ @STRCASECMP@ @STRDUP@ @TAS@ @ISINF@
  24. OBJS+= @STRTOL@ @STRTOUL@ @SNPRINTF@
  25. all: SUBSYS.o
  26. SUBSYS.o: $(OBJS)
  27. $(LD) -r -o SUBSYS.o $(OBJS)
  28. .PHONY: clean dep
  29. distclean clean:
  30. rm -f SUBSYS.o $(OBJS)
  31. depend dep:
  32. $(CC) -MM $(CFLAGS) *.c >depend
  33. ifeq (depend,$(wildcard depend))
  34. include depend
  35. endif