mirror of
https://git.openldap.org/openldap/openldap.git
synced 2025-01-06 10:46:21 +08:00
b5baf7fd01
add install rules for autogroup, nops and smbk5pwd
19 lines
475 B
Makefile
19 lines
475 B
Makefile
CPPFLAGS+=-I../../../include -I../../../servers/slapd
|
|
|
|
all: autogroup.la
|
|
|
|
autogroup.lo: autogroup.c
|
|
$(LIBTOOL) --mode=compile $(CC) $(CPPFLAGS) -Wall -c $?
|
|
|
|
autogroup.la: autogroup.lo
|
|
$(LIBTOOL) --mode=link $(CC) -version-info 0:0:0 \
|
|
-rpath $(PREFIX)/lib -module -o $@ $?
|
|
|
|
clean:
|
|
rm -f autogroup.lo autogroup.la
|
|
|
|
install: autogroup.la
|
|
mkdir -p $(PREFIX)/lib/openldap
|
|
$(LIBTOOL) --mode=install cp autogroup.la $(PREFIX)/lib/openldap
|
|
$(LIBTOOL) --finish $(PREFIX)/lib
|