⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 makefile

📁 PostgreSQL 8.1.4的源码 适用于Linux下的开源数据库系统
💻
字号:
#-------------------------------------------------------------------------## Makefile--#    Makefile for utils/misc## IDENTIFICATION#    $PostgreSQL: pgsql/src/backend/utils/misc/Makefile,v 1.24 2005/10/03 22:52:23 tgl Exp $##-------------------------------------------------------------------------subdir = src/backend/utils/misctop_builddir = ../../../..include $(top_builddir)/src/Makefile.globaloverride CPPFLAGS := -I$(srcdir) $(CPPFLAGS)OBJS = guc.o help_config.o pg_rusage.o ps_status.o superuser.o# This location might depend on the installation directories. Therefore# we can't subsitute it into pg_config.h.ifdef krb_srvtaboverride CPPFLAGS += -DPG_KRB_SRVTAB='"$(krb_srvtab)"'endifall: SUBSYS.oSUBSYS.o: $(OBJS)	$(LD) $(LDREL) $(LDOUT) SUBSYS.o $(OBJS)# guc-file is compiled as part of gucguc.o: $(srcdir)/guc-file.c$(srcdir)/guc-file.c: guc-file.lifdef FLEX	$(FLEX) $(FLEXFLAGS) $<	sed -e 's/^yy/GUC_yy/g' -e 's/\([^a-zA-Z0-9_]\)yy/\1GUC_yy/g' lex.yy.c > $@	rm -f lex.yy.celse	@$(missing) flex $< $@endif# Note: guc-file.c is not deleted by 'make clean',# since we want to ship it in distribution tarballs.clean: 	rm -f SUBSYS.o $(OBJS)	@rm -f lex.yy.cdepend dep:	$(CC) -MM $(CFLAGS) *.c >dependifeq (depend,$(wildcard depend))include dependendif

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -