mirror of
https://git.openldap.org/openldap/openldap.git
synced 2024-12-15 03:01:09 +08:00
35 lines
585 B
Makefile
35 lines
585 B
Makefile
# $OpenLDAP$
|
|
##
|
|
## Makefile.in for LDAP -lldap
|
|
##
|
|
LIBRARY = liblunicode.a
|
|
|
|
XXDIR = $(srcdir)/*/
|
|
XXHEADERS = ucdata.h ure.h
|
|
XXSRCS = ucdata.c ucgendat.c ure.c urestubs.c
|
|
SRCS =
|
|
OBJS = ucdata.o ure.o urestubs.o
|
|
|
|
XLIB = -llunicode
|
|
PROGRAMS = ucgendat
|
|
|
|
LDAP_INCDIR= ../../include
|
|
LDAP_LIBDIR= ../../libraries
|
|
|
|
ucgendat: $(LIBRARY) ucgendat.o
|
|
$(LTLINK) $(LDFLAGS) -o $@ ucgendat.o $(LIBS)
|
|
|
|
.links :
|
|
@for i in $(XXSRCS) $(XXHEADERS); do \
|
|
$(RM) $$i ; \
|
|
$(LN_S) $(XXDIR)$$i . ; \
|
|
done
|
|
touch .links
|
|
|
|
$(XXSRCS) : .links
|
|
|
|
clean-local: FORCE
|
|
@$(RM) .links
|
|
|
|
depend-common: .links
|