makefile.in
来自「关系型数据库 Postgresql 6.5.2」· IN 代码 · 共 44 行
IN
44 行
#-------------------------------------------------------------------------## Makefile--# Makefile for the port-specific subsystem of the backend## We have two different modes of operation: 1) put stuff specific to Port X# in subdirectory X and have that subdirectory's make file make it all, and # 2) use conditional statements in the present make file to include what's# necessary for a specific port in our own output. (1) came first, but (2)# is superior for many things, like when the same thing needs to be done for# multiple ports and you don't want to duplicate files in multiple # subdirectories. Much of the stuff done via Method 1 today should probably# be converted to Method 2. ## IDENTIFICATION# $Header: /usr/local/cvsroot/pgsql/src/backend/port/Makefile.in,v 1.17 1998/08/01 19:30:27 scrappy Exp $##-------------------------------------------------------------------------SRCDIR=../..include ../../Makefile.globalCFLAGS+= -I..OBJS = dynloader.o @INET_ATON@ @STRERROR@ @MISSING_RANDOM@ @SRANDOM@OBJS+= @GETHOSTNAME@ @GETRUSAGE@ @STRCASECMP@ @STRDUP@ @TAS@ @ISINF@OBJS+= @STRTOL@ @STRTOUL@ @SNPRINTF@all: SUBSYS.oSUBSYS.o: $(OBJS) $(LD) -r -o SUBSYS.o $(OBJS).PHONY: clean depdistclean clean: rm -f SUBSYS.o $(OBJS)depend dep: $(CC) -MM $(CFLAGS) *.c >dependifeq (depend,$(wildcard depend))include dependendif
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?