mirror of
https://git.openldap.org/openldap/openldap.git
synced 2026-01-15 03:14:24 -05:00
make depend, make tests, and make install all work when build directory is not the $srcdir. Also modified library handling such that -lpthread more likely to be last. WARNING: new orderring requires use of LDFLAGS to set global loader options such as -L/usr/local/lib. If you put this in LIBS, some libraries may not be found a link time. Likely broke Kerberos/LDAPD support. Don't have those in my testbed.
44 lines
1.3 KiB
Makefile
44 lines
1.3 KiB
Makefile
##
|
|
## Makefile for gopher clients
|
|
##
|
|
PROGRAMS= go500gw go500
|
|
|
|
SRCS= go500.c go500gw.c
|
|
XSRCS= gwversion.c goversion.c
|
|
GOOBJS = go500.o
|
|
GWOBJS = go500gw.o
|
|
|
|
LDAP_INCDIR= ../../include
|
|
LDAP_LIBDIR= ../../libraries
|
|
|
|
XLIBS = $(LDAP_LIBS)
|
|
XXLIBS = $(KRB_LIBS)
|
|
|
|
go500 : goversion.o
|
|
$(LTLINK) -o $@ $(GOOBJS) goversion.o $(LIBS)
|
|
|
|
go500gw : gwversion.o
|
|
$(LTLINK) -o $@ $(GWOBJS) gwversion.o $(LIBS)
|
|
|
|
goversion.c: ${GOOBJS} $(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 > $@)
|
|
|
|
gwversion.c: ${GWOBJS} $(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)/Versiongw.c > $@)
|
|
|
|
install-local: $(PROGRAMS) go500gw.help FORCE
|
|
-$(MKDIR) $(libexecdir) $(datadir)
|
|
$(LTINSTALL) $(INSTALLFLAGS) -m 755 go500 $(libexecdir)
|
|
$(LTINSTALL) $(INSTALLFLAGS) -m 755 go500gw $(libexecdir)
|
|
-$(MV) $(datadir)/go500gw.help $(datadir)/go500gw.help-
|
|
$(INSTALL) $(INSTALLFLAGS) -m 644 $(srcdir)/go500gw.help $(datadir)
|