mirror of
https://git.openldap.org/openldap/openldap.git
synced 2026-02-14 16:23:23 -05: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
|