makefile

来自「PostgreSQL7.4.6 for Linux」· 代码 · 共 46 行

TXT
46
字号
#-------------------------------------------------------------------------## Makefile for ecpg library## Copyright (c) 1994, Regents of the University of California## $PostgreSQL: pgsql/src/interfaces/ecpg/compatlib/Makefile,v 1.11.2.3 2004/03/14 12:18:35 meskes Exp $##-------------------------------------------------------------------------subdir = src/interfaces/ecpg/compatlibtop_builddir = ../../../..include $(top_builddir)/src/Makefile.globalNAME= ecpg_compatSO_MAJOR_VERSION= 1SO_MINOR_VERSION= 2override CPPFLAGS := -I$(top_srcdir)/src/interfaces/ecpg/include -I$(libpq_srcdir) -I$(top_srcdir)/src/include/utils $(CPPFLAGS) $(THREAD_CPPFLAGS)SHLIB_LINK = -L../ecpglib -lecpg -L../pgtypeslib -lpgtypes $(libpq) \	$(filter -lintl -lssl -lcrypto -lkrb5 -lcrypt -lm, $(LIBS)) $(THREAD_LIBS)OBJS= informix.oall: all-lib# Shared library stuffinclude $(top_srcdir)/src/Makefile.shlibinstall: all installdirs install-libinstalldirs:	$(mkinstalldirs) $(DESTDIR)$(libdir)uninstall: uninstall-libclean distclean maintainer-clean: clean-lib	rm -f $(OBJS)depend dep:	$(CC) -MM $(CFLAGS) *.c >dependifeq (depend,$(wildcard depend))include dependendif

⌨️ 快捷键说明

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