mirror of
https://git.openldap.org/openldap/openldap.git
synced 2024-12-21 03:10:25 +08:00
14 lines
318 B
Makefile
14 lines
318 B
Makefile
# $OpenLDAP$
|
|
OPENLDAP_SRC=../../..
|
|
OPENLDAP_BLD=../../..
|
|
CPPFLAGS+=-I${OPENLDAP_SRC}/include -I${OPENLDAP_SRC}/servers/slapd -I${OPENLDAP_BLD}/include
|
|
CC=gcc
|
|
|
|
all: addpartial-overlay.so
|
|
|
|
addpartial-overlay.so: addpartial-overlay.c
|
|
$(CC) -shared $(CPPFLAGS) $(LDFLAGS) -Wall -o $@ $?
|
|
|
|
clean:
|
|
rm addpartial-overlay.so
|