]> git.saurik.com Git - apple/icu.git/blobdiff - icuSources/config/mh-darwin
ICU-400.37.tar.gz
[apple/icu.git] / icuSources / config / mh-darwin
index 81b80225ade7cb714778b0bab094fc4542ca4656..bcdf979b66ae169ac23b5b0c0676c57eba53f72e 100644 (file)
@@ -1,7 +1,7 @@
 ## -*-makefile-*-
 ## Darwin-specific setup (Darwin is the Mac OS X developer preview, successor
 ## to Rhapsody, aka Mac OS X Server)
 ## -*-makefile-*-
 ## Darwin-specific setup (Darwin is the Mac OS X developer preview, successor
 ## to Rhapsody, aka Mac OS X Server)
-## Copyright (c) 1999-2006 International Business Machines Corporation and
+## Copyright (c) 1999-2008 International Business Machines Corporation and
 ## others. All Rights Reserved.
 
 ## Flags for position independent code
 ## others. All Rights Reserved.
 
 ## Flags for position independent code
@@ -41,6 +41,10 @@ SO=          dylib
 ## Non-shared intermediate object suffix
 STATIC_O = ao
 
 ## Non-shared intermediate object suffix
 STATIC_O = ao
 
+## Override Versioned target for a shared library.
+FINAL_SO_TARGET=  $(basename $(SO_TARGET)).$(SO_TARGET_VERSION).$(SO)
+MIDDLE_SO_TARGET= $(basename $(SO_TARGET)).$(SO_TARGET_VERSION_MAJOR).$(SO)
+
 ## Compilation rules
 %.$(STATIC_O): $(srcdir)/%.c
        $(COMPILE.c) $(STATICCPPFLAGS) $(STATICCFLAGS) -o $@ $<
 ## Compilation rules
 %.$(STATIC_O): $(srcdir)/%.c
        $(COMPILE.c) $(STATICCPPFLAGS) $(STATICCFLAGS) -o $@ $<
@@ -72,9 +76,15 @@ STATIC_O = ao
 
 ## Versioned libraries rules
 
 
 ## Versioned libraries rules
 
-%.$(SO).$(SO_TARGET_VERSION_MAJOR): %.$(SO).$(SO_TARGET_VERSION)
+%.$(SO_TARGET_VERSION_MAJOR).$(SO): %.$(SO_TARGET_VERSION).$(SO)
        $(RM) $@ && ln -s ${<F} $@
        $(RM) $@ && ln -s ${<F} $@
-%.$(SO): %.$(SO).$(SO_TARGET_VERSION_MAJOR)
-       $(RM) $@ && ln -s ${*F}.$(SO).$(SO_TARGET_VERSION) $@
+%.$(SO): %.$(SO_TARGET_VERSION_MAJOR).$(SO)
+       $(RM) $@ && ln -s ${*F}.$(SO_TARGET_VERSION).$(SO) $@
+
+# tzcode option
+TZORIG_EXTRA_CFLAGS=-DSTD_INSPIRED
+
+# genren opts
+GENREN_PL_OPTS=-x Mach-O -n '-g' -p '| c++filt'
 
 ## End Darwin-specific setup
 
 ## End Darwin-specific setup