openldap/libraries/liblunicode/Makefile.in

54 lines
1.4 KiB
Makefile
Raw Normal View History

2003-11-26 10:58:56 +08:00
# Makefile.in for LDAP -llunicode
2000-01-26 08:00:45 +08:00
# $OpenLDAP$
2003-11-26 15:16:36 +08:00
## This work is part of OpenLDAP Software <http://www.openldap.org/>.
##
2006-01-04 07:11:52 +08:00
## Copyright 1998-2006 The OpenLDAP Foundation.
2003-11-26 10:58:56 +08:00
## All rights reserved.
2000-01-26 08:00:45 +08:00
##
2003-11-26 10:58:56 +08:00
## Redistribution and use in source and binary forms, with or without
## modification, are permitted only as authorized by the OpenLDAP
## Public License.
2000-01-26 08:00:45 +08:00
##
2003-11-26 10:58:56 +08:00
## A copy of this license is available in the file LICENSE in the
## top-level directory of the distribution or, alternatively, at
## <http://www.OpenLDAP.org/license.html>.
2000-01-26 08:00:45 +08:00
LIBRARY = liblunicode.a
2000-01-29 05:52:28 +08:00
XXDIR = $(srcdir)/*/
2004-05-31 09:58:13 +08:00
XXHEADERS = ucdata.h ure.h uctable.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
2000-09-08 07:31:59 +08:00
SRCS = ucstr.c
OBJS = ucdata.o ure.o urestubs.o ucstr.o
2000-01-26 08:00:45 +08:00
XLIB = $(LIBRARY)
XLIBS = $(LDAP_LIBLBER_LA) $(LDAP_LIBLUTIL_A)
2004-05-31 09:58:13 +08:00
#PROGRAMS = ucgendat
2000-01-26 08:00:45 +08:00
LDAP_INCDIR= ../../include
LDAP_LIBDIR= ../../libraries
uctable.h: $(XXDIR)/uctable.h
$(XXDIR)/uctable.h: $(XXDIR)/ucgendat.c $(srcdir)/UnicodeData.txt $(srcdir)/CompositionExclusions.txt
2004-05-31 09:58:13 +08:00
$(MAKE) ucgendat
./ucgendat $(srcdir)/UnicodeData.txt -x $(srcdir)/CompositionExclusions.txt
ucgendat: $(XLIBS) ucgendat.o
$(LTLINK) -o $@ ucgendat.o $(LIBS)
2000-09-04 07:48:35 +08:00
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
2005-09-04 23:23:35 +08:00
$(XXSRCS) $(XXHEADERS) : .links
2000-01-26 08:00:45 +08:00
clean-local: FORCE
2004-05-31 09:58:13 +08:00
@$(RM) *.dat .links $(XXHEADERS) ucgendat
2000-01-26 08:00:45 +08:00
depend-common: .links