]> git.sur5r.net Git - openldap/blobdiff - libraries/liblunicode/Makefile.in
Merge remote-tracking branch 'origin/mdb.master' into OPENLDAP_REL_ENG_2_4
[openldap] / libraries / liblunicode / Makefile.in
index 55413c54f501a8a66dd2bc51fe3ec97cbbb4e3c6..b83059cd04e44b06d1a180133b45761fa5c2726e 100644 (file)
@@ -1,47 +1,54 @@
+# Makefile.in for LDAP -llunicode
 # $OpenLDAP$
-## Copyright 1998-2000 The OpenLDAP Foundation, All Rights Reserved.
-## COPYING RESTRICTIONS APPLY, see COPYRIGHT file
+## This work is part of OpenLDAP Software <http://www.openldap.org/>.
 ##
-## Makefile.in for LDAP -lldap
+## Copyright 1998-2013 The OpenLDAP Foundation.
+## All rights reserved.
 ##
+## Redistribution and use in source and binary forms, with or without
+## modification, are permitted only as authorized by the OpenLDAP
+## Public License.
+##
+## 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>.
+
 LIBRARY = liblunicode.a
 
-XXDIR = $(srcdir)/*/
-XXHEADERS = ucdata.h ure.h
+XXDIR = $(srcdir)/ucdata/
+XXHEADERS = ucdata.h ure.h uctable.h
 
 XXSRCS = ucdata.c ucgendat.c ure.c urestubs.c
 SRCS   = ucstr.c
 OBJS   = ucdata.o ure.o urestubs.o ucstr.o
 
-XLIB = -llunicode
-PROGRAMS = ucgendat
+XLIB = $(LIBRARY)
+XLIBS = $(LDAP_LIBLUTIL_A) $(LDAP_LIBLBER_LA)
+#PROGRAMS = ucgendat
 
 LDAP_INCDIR= ../../include       
 LDAP_LIBDIR= ../../libraries
 
-ucgendat: $(LIBRARY) ucgendat.o
-       $(LTLINK) $(LDFLAGS) -o $@ ucgendat.o $(LIBS)
-       ./ucgendat $(srcdir)/UnicodeData.txt
+uctable.h: $(XXDIR)/uctable.h
 
-DATFILES = case.dat cmbcl.dat ctype.dat decomp.dat num.dat
+$(XXDIR)/uctable.h: $(XXDIR)/ucgendat.c $(srcdir)/UnicodeData.txt $(srcdir)/CompositionExclusions.txt
+       $(MAKE) ucgendat
+       ./ucgendat $(srcdir)/UnicodeData.txt -x $(srcdir)/CompositionExclusions.txt
 
-install-local: $(PROGRAMS) FORCE
-       -$(MKDIR) $(DESTDIR)$(datadir)/ucdata
-       @for i in $(DATFILES); do \
-               echo $(INSTALL) $(INSTALLFLAGS) -m 644 $$i $(DESTDIR)$(datadir)/ucdata; \
-               $(INSTALL) $(INSTALLFLAGS) -m 644 $$i $(DESTDIR)$(datadir)/ucdata; \
-       done
+ucgendat: $(XLIBS) ucgendat.o
+       $(LTLINK) -o $@ ucgendat.o $(LIBS)
 
 .links :
        @for i in $(XXSRCS) $(XXHEADERS); do \
                $(RM) $$i ; \
-               $(LN_S) $(XXDIR)$$i . ; \
+               ii=`find $(srcdir) -name $$i` ; \
+               $(LN_S) $$ii . ; \
        done
        touch .links
 
-$(XXSRCS) : .links
+$(XXSRCS) $(XXHEADERS) : .links
 
 clean-local: FORCE
-       @$(RM) *.dat .links
+       @$(RM) *.dat .links $(XXHEADERS) ucgendat
 
 depend-common: .links