📄 makefile
字号:
#-------------------------------------------------------------------------## Makefile--# Makefile for regress (the regression test)## Copyright (c) 1994, Regents of the University of California### IDENTIFICATION# $Header: /usr/local/cvsroot/pgsql/src/test/regress/output/Makefile,v 1.9 1998/09/29 12:42:11 scrappy Exp $##-------------------------------------------------------------------------SRCDIR= ../../..include ../../../Makefile.global## ... plus test query inputs## INFILES is the files the regression test uses for input.INFILES= copy.out \ create_function_1.out \ create_function_2.out \ misc.out \ constraints.out \ install_plpgsql.outall: $(INFILES)%.out: %.source if [ -z "$$USER" ]; then USER=$$LOGNAME; fi; \ if [ -z "$$USER" ]; then USER=`whoami`; fi; \ if [ -z "$$USER" ]; then echo 'Cannot deduce $$USER.'; exit 1; fi; \ rm -f $@; \ OBJ=`pwd`; \ sed -e "s:_OBJWD_:$$OBJ/\.\.:g" \ -e "s:_DLSUFFIX_:$(DLSUFFIX):g" \ -e "s:_LIBDIR_:$(LIBDIR):g" \ -e "s/_USER_/$$USER/g" < $< | \ sed -e "s:output/\.\.:input/\.\.:g" > ../expected/$@
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -