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