📄 makefile
字号:
#-------------------------------------------------------------------------## 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 + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -