mirror of
https://git.openldap.org/openldap/openldap.git
synced 2024-12-21 03:10:25 +08:00
18 lines
353 B
Makefile
18 lines
353 B
Makefile
|
PROGRAMS= saucer
|
||
|
|
||
|
SRCS= main.c
|
||
|
OBJS= main.o
|
||
|
|
||
|
LDAP_INCDIR= ../../include
|
||
|
LDAP_LIBDIR= ../../libraries
|
||
|
|
||
|
XLIBS = -lldap -llber -llutil
|
||
|
XXLIBS = $(KRB_LIBS) $(LUTIL_LIBS)
|
||
|
|
||
|
saucer: ${OBJS} $(LDAP_LIBDEPEND)
|
||
|
$(LTLINK) -o $@ $(OBJS) $(LIBS)
|
||
|
|
||
|
install-local: $(PROGRAMS) FORCE
|
||
|
-$(MKDIR) $(libexecdir)
|
||
|
$(LTINSTALL) $(INSTALLFLAGS) -m 755 saucer $(libexecdir)
|