makefile.in

来自「关系型数据库 Postgresql 6.5.2」· IN 代码 · 共 57 行

IN
57
字号
#-------------------------------------------------------------------------## Makefile#    Makefile for ecpg library## Copyright (c) 1994, Regents of the University of California## IDENTIFICATION#    $Header: /usr/local/cvsroot/pgsql/src/interfaces/ecpg/lib/Makefile.in,v 1.44 1999/06/30 23:57:23 tgl Exp $##-------------------------------------------------------------------------NAME= ecpgSO_MAJOR_VERSION= 3SO_MINOR_VERSION= 0.0SRCDIR= @top_srcdir@include $(SRCDIR)/Makefile.globalCFLAGS+= -I../include -I$(SRCDIR)/interfaces/libpqifdef KRBVERSCFLAGS+= $(KRBFLAGS)endifOBJS= ecpglib.o typename.oSHLIB_LINK= -L../../libpq -lpq# Shared library stuff, also default 'all' targetinclude $(SRCDIR)/Makefile.shlib.PHONY: installinstall: install-lib $(install-shlib-dep)# Handmade dependencies in case make depend not doneecpglib.o : ecpglib.c ../include/ecpglib.h ../include/ecpgtype.htypename.o : typename.c ../include/ecpgtype.h.PHONY: cleanclean: clean-shlib	rm -f lib$(NAME).a $(OBJS)ifeq ($(PORTNAME), win)	rm -f $(NAME).defendifdepend dep:	$(CC) -MM $(CFLAGS) *.c >dependifeq (depend,$(wildcard depend))include dependendif

⌨️ 快捷键说明

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