mirror of
https://git.openldap.org/openldap/openldap.git
synced 2024-12-15 03:01:09 +08:00
28a671d10d
end of link. Basic order is: $LDFLAGS internal-libs external-libs $LIBS $LTHREAD_LIBS LTHREAD_LIBS is last as -lpthread (or equiv) must be last on many systems. LIBS is next to last as some user might have put -lpthread (or equiv) in $LIBS.
30 lines
860 B
Makefile
30 lines
860 B
Makefile
SRCS= main.c find.c mod.c print.c auth.c util.c help.c \
|
|
string_to_key.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 \
|
|
string_to_key.o group.o globals.o edit.o
|
|
HDRS= ud.h
|
|
PROGRAMS= ud
|
|
|
|
LDAP_INCDIR= ../../include
|
|
LDAP_LIBDIR= ../../libraries
|
|
|
|
XLIBS = -lldif -lldap -llber -llutil
|
|
XXLIBS = $(TERMCAP_LIBS) $(KRB_LIBS) $(LUTIL_LIBS)
|
|
|
|
ud : version.o
|
|
$(LTLINK) -o $@ version.o $(OBJS) $(LIBS)
|
|
|
|
version.c: ${OBJS} $(LDAP_LIBDEPEND)
|
|
$(RM) $@
|
|
(u=$${USER-root} v=`$(CAT) $(VERSIONFILE)` d=`$(PWD)` h=`$(HOSTNAME)` \
|
|
t=`$(DATE)`; $(SED) -e "s|%WHEN%|$${t}|" \
|
|
-e "s|%WHOANDWHERE%|$${u}@$${h}:$${d}|" \
|
|
-e "s|%VERSION%|$${v}|" \
|
|
< $(srcdir)/Version.c > $@)
|
|
|
|
install-local: FORCE
|
|
-$(MKDIR) $(bindir)
|
|
-mv -f $(bindir)/ud $(bindir)/ud-
|
|
$(LTINSTALL) $(INSTALLFLAGS) -m 775 ud $(bindir)
|