mirror of
https://git.openldap.org/openldap/openldap.git
synced 2025-12-24 00:29:35 -05:00
13 lines
318 B
Makefile
13 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
|