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

数据库系统

开发平台:

Unix_Linux

  1. #-------------------------------------------------------------------------
  2. #
  3. # Makefile.inc--
  4. #    Makefile for src/bin (utility programs)
  5. #
  6. # Copyright (c) 1994, Regents of the University of California
  7. #
  8. #
  9. # IDENTIFICATION
  10. #    $Header: /usr/local/cvsroot/pgsql/src/bin/Makefile,v 1.18 1999/05/20 16:49:59 wieck Exp $
  11. #
  12. #-------------------------------------------------------------------------
  13. SRCDIR= ..
  14. include ../Makefile.global
  15. DIRS = pg_id pg_version psql pg_dump pg_passwd cleardbdir createdb 
  16. createlang createuser destroydb destroylang destroyuser initdb 
  17. vacuumdb initlocation ipcclean
  18. ifdef MULTIBYTE
  19. DIRS += pg_encoding
  20. endif
  21. #
  22. # TCL/TK programs
  23. #
  24. ifeq ($(USE_TCL), true)
  25. ifeq ($(USE_TK), true)
  26. DIRS += pgaccess
  27. endif
  28. DIRS += pgtclsh
  29. endif
  30. .DEFAULT all:
  31. for i in $(DIRS); do $(MAKE) -C $$i $@; done