openldap/libraries/liblunicode/Makefile.in

45 lines
925 B
Makefile
Raw Normal View History

2000-01-26 08:00:45 +08:00
# $OpenLDAP$
2000-05-13 10:43:19 +08:00
## Copyright 1998-2000 The OpenLDAP Foundation, All Rights Reserved.
## COPYING RESTRICTIONS APPLY, see COPYRIGHT file
2000-01-26 08:00:45 +08:00
##
## Makefile.in for LDAP -lldap
##
LIBRARY = liblunicode.a
2000-01-29 05:52:28 +08:00
XXDIR = $(srcdir)/*/
2000-01-26 08:00:45 +08:00
XXHEADERS = ucdata.h ure.h
2000-09-04 07:48:35 +08:00
2000-01-26 08:00:45 +08:00
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)
2000-09-04 07:48:35 +08:00
./ucgendat $(srcdir)/UnicodeData.txt
install-local: $(PROGRAMS) FORCE
-$(MKDIR) $(DESTDIR)$(datadir)/ucdata
@for i $(DATFILES); do \
2000-09-05 01:01:37 +08:00
$(INSTALL) $(INSTALLFLAGS) -m 644 $$i $(DESTDIR)$(datadir)/ucdata; \
2000-09-04 07:48:35 +08:00
done
2000-01-26 08:00:45 +08:00
.links :
@for i in $(XXSRCS) $(XXHEADERS); do \
$(RM) $$i ; \
2000-01-29 05:52:28 +08:00
$(LN_S) $(XXDIR)$$i . ; \
2000-01-26 08:00:45 +08:00
done
touch .links
$(XXSRCS) : .links
clean-local: FORCE
2000-09-04 07:48:35 +08:00
@$(RM) *.dat .links
2000-01-26 08:00:45 +08:00
depend-common: .links