mirror of
https://git.openldap.org/openldap/openldap.git
synced 2025-12-29 02:59:34 -05:00
9 lines
147 B
Makefile
9 lines
147 B
Makefile
CPPFLAGS+=-I../../../include -I../../../servers/slapd
|
|
|
|
all: nops.so
|
|
|
|
nops.so: nops.c
|
|
$(CC) -shared $(CPPFLAGS) -Wall -o $@ $?
|
|
|
|
clean:
|
|
rm nops.so
|