2003-11-26 10:58:56 +08:00
|
|
|
# Libraries Makefile for OpenLDAP
|
1999-09-02 08:52:43 +08:00
|
|
|
# $OpenLDAP$
|
2003-11-26 12:17:25 +08:00
|
|
|
## This work is part of OpenLDAP Software <http://www.openldap.org/>.
|
|
|
|
##
|
2021-01-12 03:25:53 +08:00
|
|
|
## Copyright 1998-2021 The OpenLDAP Foundation.
|
2003-11-26 10:58:56 +08:00
|
|
|
## All rights reserved.
|
1998-10-25 09:41:42 +08:00
|
|
|
##
|
2003-11-26 10:58:56 +08:00
|
|
|
## 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>.
|
1998-10-25 09:41:42 +08:00
|
|
|
|
2003-11-26 07:19:47 +08:00
|
|
|
SUBDIRS= \
|
2011-03-18 22:51:42 +08:00
|
|
|
liblutil \
|
2011-03-18 23:18:42 +08:00
|
|
|
liblber \
|
2003-11-26 07:19:47 +08:00
|
|
|
liblunicode \
|
2020-05-14 00:54:50 +08:00
|
|
|
libldap \
|
2003-11-26 07:19:47 +08:00
|
|
|
librewrite
|
1998-10-25 09:41:42 +08:00
|
|
|
|
2019-09-29 09:33:54 +08:00
|
|
|
PKGCONFIG_DIR=$(DESTDIR)$(libdir)/pkgconfig
|
2019-09-29 09:38:17 +08:00
|
|
|
PKGCONFIG_SRCDIRS=liblber libldap
|
2019-09-29 09:33:54 +08:00
|
|
|
|
|
|
|
install-local:
|
|
|
|
@$(MKDIR) $(PKGCONFIG_DIR)
|
|
|
|
@for i in $(PKGCONFIG_SRCDIRS); do \
|
|
|
|
$(INSTALL_DATA) $$i/*.pc $(PKGCONFIG_DIR); \
|
|
|
|
done
|