⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 makefile

📁 ldap服务器源码
💻
字号:
# $OpenLDAP: pkg/ldap/contrib/slapd-modules/comp_match/Makefile,v 1.3.2.6 2007/01/02 21:43:42 kurt Exp $# This work is part of OpenLDAP Software <http://www.openldap.org/>.## Copyright 2003-2007 The OpenLDAP Foundation.# Portions Copyright 2004 by IBM Corporation.# All rights reserved.# Copyright 2004 Sang Seok Lim, IBM Corp. All Rights Reserved.## Redistribution and use in source and binary forms, with or without# modification, are permitted only as authorized by the OpenLDAP# Public License.## A copy of this license is available in the file LICENSE in the# top-level directory of the distribution or, alternatively, at# <http://www.OpenLDAP.org/license.html>.topbuilddir = ../../../../buildtopsrcdir = ../../..snaccdir = /usr/local/snaccopenssldir = /usr/local/include/opensslLIBTOOL=$(topbuilddir)/libtoolOPT=-g -O2 -DLDAP_COMPONENTCC=gccSNACC_INC=-I$(snaccdir) -I$(snaccdir)/c-lib/incLDAP_INC=-I$(topsrcdir)/include -I$(topsrcdir)/servers/slapd -I$(topbuilddir)/includeOPENSSL_INC=-I$(openssldir)INCS=$(LDAP_INC) $(SNACC_INC) $(OPENSSL_INC)SNACC_LIB=$(snaccdir)/c-lib/libcasn1.aSSL_LIB=/usr/local/lib/lcryptoLIBS=$(LDAP_LIB) $(SNACC_LIB) $(SSL_LIB)all:	compmatch.lacomponentlib.lo:	componentlib.c	$(LIBTOOL) --mode=compile $(CC) $(OPT) $(INCS) -c $?certificate.lo:	certificate.c	$(LIBTOOL) --mode=compile $(CC) $(OPT) $(INCS) -c $?crl.lo:	crl.c	$(LIBTOOL) --mode=compile $(CC) $(OPT) $(INCS) -c $?authorityKeyIdentifier.lo:	authorityKeyIdentifier.c	$(LIBTOOL) --mode=compile $(CC) $(OPT) $(INCS) -c $?asn_to_syn_mr.lo:	asn_to_syn_mr.c	$(LIBTOOL) --mode=compile $(CC) $(OPT) $(INCS) -c $?init.lo:	init.c	$(LIBTOOL) --mode=compile $(CC) $(OPT) $(INCS) -c $?compmatch.la:	componentlib.lo init.lo certificate.lo asn_to_syn_mr.lo authorityKeyIdentifier.lo crl.lo	$(LIBTOOL) --mode=link $(CC) $(OPT) $(LIBS) -version-info 0:0:0 \	-rpath /usr/local/libexec/openldap -module -o $@ $? $(LIBS)clean:	\rm compmatch.la componentlib.lo certificate.lo asn_to_syn_mr.lo authorityKeyIdentifier.lo crl.lo\		init.o init.lo componentlib.o certificate.o asn_to_syn_mr.o authorityKeyIdentifier.o crl.oinstall:	cp -r .libs $(topsrcdir)/tests/data/comp_libs	cp compmatch.la  $(topsrcdir)/tests/data/comp_libs

⌨️ 快捷键说明

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