mirror of
https://git.openldap.org/openldap/openldap.git
synced 2024-12-15 03:01:09 +08:00
dba57a312c
identification strings compatible with ident(1) and what(1). Uses $(VERSION) generated from configure.in. rm build/version rm old version .c files
25 lines
661 B
Makefile
25 lines
661 B
Makefile
PROGRAMS= rcpt500
|
|
SRCS= main.c cmds.c help.c query.c
|
|
XSRCS= version.c
|
|
OBJS= main.o cmds.o help.o query.o
|
|
HDRS= rcpt500.h
|
|
|
|
LDAP_INCDIR= ../../include
|
|
LDAP_LIBDIR= ../../libraries
|
|
|
|
XLIBS = -lldap -llber -llutil
|
|
XXLIBS = $(KRB_LIBS) $(LUTIL_LIBS)
|
|
|
|
rcpt500 : version.o
|
|
$(LTLINK) -o $@ version.o $(OBJS) $(LIBS)
|
|
|
|
version.c: ${OBJS} $(LDAP_LIBDEPEND)
|
|
@-$(RM) $@
|
|
$(MKVERSION) rcpt500 > $@
|
|
|
|
install-local: $(PROGRAMS) rcpt500.help FORCE
|
|
-$(MKDIR) $(libexecdir) $(datadir)
|
|
$(LTINSTALL) $(INSTALLFLAGS) -m 755 rcpt500 $(libexecdir)
|
|
-$(MV) $(datadir)/rcpt500.help $(datadir)/rcpt500.help-
|
|
$(INSTALL) $(INSTALLFLAGS) -m 644 $(srcdir)/rcpt500.help $(datadir)
|