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

数据库系统

开发平台:

Unix_Linux

  1. #-------------------------------------------------------------------------
  2. #
  3. # Makefile.inc--
  4. #    Makefile for bin/initdb
  5. #
  6. # Copyright (c) 1994, Regents of the University of California
  7. #
  8. #
  9. # IDENTIFICATION
  10. #    $Header: /usr/local/cvsroot/pgsql/src/bin/initdb/Makefile,v 1.13 1999/05/20 16:50:05 wieck Exp $
  11. #
  12. #-------------------------------------------------------------------------
  13. SRCDIR= ../..
  14. include ../../Makefile.global
  15. all: initdb
  16. initdb: initdb.sh
  17. sed -e 's/__MULTIBYTE__/$(MULTIBYTE)/' 
  18. initdb.sh > initdb
  19. install: initdb
  20. $(INSTALL) $(INSTL_EXE_OPTS) $< $(BINDIR)/$<
  21. clean:
  22. rm -f initdb
  23. dep depend: