openldap/libraries/liblunicode/Makefile.in

55 lines
1.4 KiB
Makefile
Raw Normal View History

2003-11-25 21:58:56 -05:00
# Makefile.in for LDAP -llunicode
2000-01-25 19:00:45 -05:00
# $OpenLDAP$
2003-11-26 02:16:36 -05:00
## This work is part of OpenLDAP Software <http://www.openldap.org/>.
##
2009-01-21 19:40:04 -05:00
## Copyright 1998-2009 The OpenLDAP Foundation.
2003-11-25 21:58:56 -05:00
## All rights reserved.
2000-01-25 19:00:45 -05:00
##
2003-11-25 21:58:56 -05: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-25 19:00:45 -05:00
##
2003-11-25 21:58:56 -05: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-25 19:00:45 -05:00
LIBRARY = liblunicode.a
2006-04-05 21:27:16 -04:00
XXDIR = $(srcdir)/ucdata/
2004-05-30 21:58:13 -04:00
XXHEADERS = ucdata.h ure.h uctable.h
2000-09-03 19:48:35 -04:00
2000-01-25 19:00:45 -05:00
XXSRCS = ucdata.c ucgendat.c ure.c urestubs.c
2000-09-07 19:31:59 -04:00
SRCS = ucstr.c
OBJS = ucdata.o ure.o urestubs.o ucstr.o
2000-01-25 19:00:45 -05:00
XLIB = $(LIBRARY)
2007-10-19 00:46:41 -04:00
XLIBS = $(LDAP_LIBLUTIL_A) $(LDAP_LIBLBER_LA)
2004-05-30 21:58:13 -04:00
#PROGRAMS = ucgendat
2000-01-25 19:00:45 -05: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-30 21:58:13 -04:00
$(MAKE) ucgendat
./ucgendat $(srcdir)/UnicodeData.txt -x $(srcdir)/CompositionExclusions.txt
ucgendat: $(XLIBS) ucgendat.o
$(LTLINK) -o $@ ucgendat.o $(LIBS)
2000-09-03 19:48:35 -04:00
2000-01-25 19:00:45 -05:00
.links :
@for i in $(XXSRCS) $(XXHEADERS); do \
$(RM) $$i ; \
ii=`find $(srcdir) -name $$i` ; \
2006-04-05 21:27:16 -04:00
$(LN_S) $$ii . ; \
2000-01-25 19:00:45 -05:00
done
touch .links
2005-09-04 11:23:35 -04:00
$(XXSRCS) $(XXHEADERS) : .links
2000-01-25 19:00:45 -05:00
clean-local: FORCE
2004-05-30 21:58:13 -04:00
@$(RM) *.dat .links $(XXHEADERS) ucgendat
2000-01-25 19:00:45 -05:00
depend-common: .links