mirror of
https://git.openldap.org/openldap/openldap.git
synced 2024-12-21 03:10:25 +08:00
13 lines
279 B
Makefile
13 lines
279 B
Makefile
|
CPPFLAGS=-I../../../include -I../../../servers/slapd
|
||
|
#LDFLAGS=-L/usr/local/openldap/lib
|
||
|
#LDFLAGS=-L/home/mszulczynski/autogroup/openldap/lib/
|
||
|
CC=gcc
|
||
|
|
||
|
all: autogroup.so
|
||
|
|
||
|
autogroup.so: autogroup.c
|
||
|
$(CC) -shared -fPIC $(CPPFLAGS) $(LDFLAGS) -Wall -o $@ $?
|
||
|
|
||
|
clean:
|
||
|
rm autogroup.so
|