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

数据库系统

开发平台:

Unix_Linux

  1. #-------------------------------------------------------------------------
  2. #
  3. # Makefile--
  4. #    Makefile for regress (the regression test)
  5. #
  6. # Copyright (c) 1994, Regents of the University of California
  7. #
  8. #
  9. # IDENTIFICATION
  10. #    $Header: /usr/local/cvsroot/pgsql/src/test/regress/input/Makefile,v 1.7 1998/09/29 12:41:56 scrappy Exp $
  11. #
  12. #-------------------------------------------------------------------------
  13. SRCDIR= ../../..
  14. include ../../../Makefile.global
  15. #
  16. # ... plus test query inputs
  17. #
  18. # INFILES is the files the regression test uses for input.
  19. INFILES= copy.sql 
  20.          create_function_1.sql 
  21.          create_function_2.sql 
  22.          misc.sql 
  23.  constraints.sql 
  24.  install_plpgsql.sql
  25. all: $(INFILES)
  26. %.sql: %.source
  27. if [ -z "$$USER" ]; then USER=$$LOGNAME; fi; 
  28. if [ -z "$$USER" ]; then USER=`whoami`; fi; 
  29. if [ -z "$$USER" ]; then echo 'Cannot deduce $$USER.'; exit 1; fi; 
  30. rm -f $@; 
  31. OBJ=`pwd`; 
  32. sed -e "s:_OBJWD_:$$OBJ/..:g" 
  33.     -e "s:_DLSUFFIX_:$(DLSUFFIX):g" 
  34.     -e "s:_LIBDIR_:$(LIBDIR):g" 
  35.     -e "s/_USER_/$$USER/g" < $< > ../sql/$@