📄 makefile.in
字号:
#-------------------------------------------------------------------------## Makefile# Makefile for libpq library## Copyright (c) 1994, Regents of the University of California## IDENTIFICATION# $Header: /usr/local/cvsroot/pgsql/src/interfaces/libpq/Makefile.in,v 1.46 1999/06/30 23:57:25 tgl Exp $##-------------------------------------------------------------------------NAME= pqSO_MAJOR_VERSION= 2SO_MINOR_VERSION= 0SRCDIR= @top_srcdir@include $(SRCDIR)/Makefile.globalCFLAGS+= -DFRONTENDifdef KRBVERSCFLAGS+= $(KRBFLAGS)endififdef MULTIBYTECFLAGS+= $(MBFLAGS)endifOBJS= fe-auth.o fe-connect.o fe-exec.o fe-misc.o fe-print.o fe-lobj.o \ dllist.o pqsignal.oifdef MULTIBYTEOBJS+= common.o wchar.o conv.o big5.oendif# If crypt is a separate library, rather than part of libc,# make sure it gets included in shared libpq.SHLIB_LINK+= $(findstring -lcrypt,$(LIBS))# Shared library stuff, also default 'all' targetinclude $(SRCDIR)/Makefile.shlib# We need to compile this with special options for shared libs,# so we can't use the object in $(SRCDIR)/backenddllist.c: $(SRCDIR)/backend/lib/dllist.c -$(LN_S) $(SRCDIR)/backend/lib/dllist.c .ifdef MULTIBYTE# We need to compile this with special options for shared libs,# so we can't use the object in $(SRCDIR)/backendcommon.c: $(SRCDIR)/backend/utils/mb/common.c -$(LN_S) $(SRCDIR)/backend/utils/mb/common.c .wchar.c: $(SRCDIR)/backend/utils/mb/wchar.c -$(LN_S) $(SRCDIR)/backend/utils/mb/wchar.c .conv.c: $(SRCDIR)/backend/utils/mb/conv.c -$(LN_S) $(SRCDIR)/backend/utils/mb/conv.c .big5.c: $(SRCDIR)/backend/utils/mb/big5.c -$(LN_S) $(SRCDIR)/backend/utils/mb/big5.c .endif# The following rules cause dependencies in the backend directory to # get made if they don't exist, but don't cause them to get remade if they# are out of date.fe-lobj.o: $(SRCDIR)/backend/fmgr.h$(SRCDIR)/backend/fmgr.h: $(MAKE) -C $(SRCDIR)/backend fmgr.h.PHONY: install install-headersinstall: install-headers install-lib $(install-shlib-dep)install-headers: libpq-fe.h libpq-int.h @if [ ! -d $(HEADERDIR) ]; then mkdir $(HEADERDIR); fi $(INSTALL) $(INSTLOPTS) libpq-fe.h $(HEADERDIR)/libpq-fe.h $(INSTALL) $(INSTLOPTS) libpq-int.h $(HEADERDIR)/libpq-int.h.PHONY: cleanclean: clean-shlib rm -f libpq.a $(OBJS) rm -f dllist.c common.c wchar.c conv.c big5.cifeq ($(PORTNAME), win) rm -f pq.defendifdepend dep: $(CC) -MM $(CFLAGS) *.c >dependifeq (depend,$(wildcard depend))include dependendif
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -