mirror of
https://git.openldap.org/openldap/openldap.git
synced 2024-12-21 03:10:25 +08:00
ce07fb958e
s/-L.../libraries -lldap/.../libraries/libldap/libldap.la/
36 lines
824 B
Makefile
36 lines
824 B
Makefile
# $OpenLDAP$
|
|
|
|
SRCS= main.c find.c mod.c print.c auth.c util.c help.c \
|
|
group.c edit.c globals.c
|
|
XSRCS= version.c
|
|
OBJS= main.o find.o mod.o print.o auth.o util.o help.o \
|
|
group.o globals.o edit.o
|
|
HDRS= ud.h
|
|
|
|
UNIX_PRGS = ud
|
|
PROGRAMS = $(@PLAT@_PRGS)
|
|
|
|
LDAP_INCDIR= ../../include
|
|
LDAP_LIBDIR= ../../libraries
|
|
|
|
XLIBS = $(LDAP_L)
|
|
XXLIBS = $(TERMCAP_LIBS) $(SECURITY_LIBS) $(LDIF_LIBS) $(LUTIL_LIBS)
|
|
|
|
ud : version.o
|
|
$(LTLINK) -o $@ version.o $(OBJS) $(LIBS)
|
|
|
|
version.c: ${OBJS} $(XLIBS)
|
|
@-$(RM) $@
|
|
$(MKVERSION) -s -c -n Version UserDirectory > $@
|
|
|
|
install-local: FORCE
|
|
-$(MKDIR) $(DESTDIR)$(bindir)
|
|
-mv -f $(DESTDIR)$(bindir)/ud $(DESTDIR)$(bindir)/ud-
|
|
@( \
|
|
for prg in $(PROGRAMS); do \
|
|
$(LTINSTALL) $(INSTALLFLAGS) -s -m 755 $$prg$(EXEEXT) \
|
|
$(DESTDIR)$(bindir); \
|
|
done \
|
|
)
|
|
|