mirror of
https://git.openldap.org/openldap/openldap.git
synced 2024-12-21 03:10:25 +08:00
21 lines
497 B
Makefile
21 lines
497 B
Makefile
# $OpenLDAP$
|
|
|
|
##
|
|
# Copyright 2003-2017 The OpenLDAP Foundation, All Rights Reserved.
|
|
# COPYING RESTRICTIONS APPLY, see COPYRIGHT file
|
|
##
|
|
AM_CPPFLAGS = -I$(top_srcdir)/src
|
|
noinst_PROGRAMS = main readSchema startTls urlTest
|
|
|
|
main_SOURCES = main.cpp
|
|
main_LDADD = ../src/libldapcpp.la
|
|
|
|
readSchema_SOURCES = readSchema.cpp
|
|
readSchema_LDADD = ../src/libldapcpp.la
|
|
|
|
startTls_SOURCES = startTls.cpp
|
|
startTls_LDADD = ../src/libldapcpp.la
|
|
|
|
urlTest_SOURCES = urlTest.cpp
|
|
urlTest_LDADD = ../src/libldapcpp.la
|