makefile
来自「关系型数据库 Postgresql 6.5.2」· 代码 · 共 57 行
TXT
57 行
#-------------------------------------------------------------------------## Makefile--# Makefile for tcop## IDENTIFICATION# $Header: /usr/local/cvsroot/pgsql/src/backend/tcop/Makefile,v 1.18 1998/07/26 04:30:46 scrappy Exp $##-------------------------------------------------------------------------SRCDIR= ../..include ../../Makefile.globalCFLAGS+= -I..ifdef MULTIBYTECFLAGS+= $(MBFLAGS)endififeq ($(CC), gcc)CFLAGS+= -Wno-errorendifOBJS= dest.o fastpath.o postgres.o pquery.o utility.oall: SUBSYS.oSUBSYS.o: $(OBJS) $(LD) -r -o SUBSYS.o $(OBJS)# The following dependencies are picked up by the make dep, but since # not everyone can do make dep, and these are particularly important# dependencies (because they don't even exist until you make them),# they are hardcoded here.utility.o: ../parse.h ../fmgr.haclchk.o: ../fmgr.hfastpath.o: ../fmgr.hpostgres.o: ../fmgr.h../parse.h: $(MAKE) -C .. parse.h../fmgr.h: $(MAKE) -C .. fmgr.hdep depend: ../parse.h ../fmgr.h $(CC) -MM $(CFLAGS) *.c >dependclean: rm -f SUBSYS.o $(OBJS) ifeq (depend,$(wildcard depend))include dependendif
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?