| OLD | NEW |
| 1 ## *****************************************************************************
* | 1 ## *****************************************************************************
* |
| 2 ## * | 2 ## * |
| 3 ## * Copyright (C) 1999-2012, International Business Machines | 3 ## * Copyright (C) 1999-2014, International Business Machines |
| 4 ## * Corporation and others. All Rights Reserved. | 4 ## * Corporation and others. All Rights Reserved. |
| 5 ## * | 5 ## * |
| 6 ## *****************************************************************************
** | 6 ## *****************************************************************************
** |
| 7 ## Makefile.in for ICU - uconv | 7 ## Makefile.in for ICU - uconv |
| 8 ## Steven R. Loomis | 8 ## Steven R. Loomis |
| 9 | 9 |
| 10 ## Set the following to dll or static or common.. | 10 ## Set the following to dll or static or common.. |
| 11 UCONVMSG_MODE=static | 11 UCONVMSG_MODE=static |
| 12 ############################################################## | 12 ############################################################## |
| 13 | 13 |
| (...skipping 22 matching lines...) Expand all Loading... |
| 36 | 36 |
| 37 ALL_MAN_FILES = $(TARGET_STUB_NAME).$(SECTION) | 37 ALL_MAN_FILES = $(TARGET_STUB_NAME).$(SECTION) |
| 38 | 38 |
| 39 ## Extra files to remove for 'make clean' | 39 ## Extra files to remove for 'make clean' |
| 40 CLEANFILES = *~ $(DEPS) $(ALL_MAN_FILES) | 40 CLEANFILES = *~ $(DEPS) $(ALL_MAN_FILES) |
| 41 | 41 |
| 42 ## Target information | 42 ## Target information |
| 43 TARGET = $(BINDIR)/$(TARGET_STUB_NAME)$(EXEEXT) | 43 TARGET = $(BINDIR)/$(TARGET_STUB_NAME)$(EXEEXT) |
| 44 | 44 |
| 45 CPPFLAGS += -I$(top_srcdir)/common -I$(top_srcdir)/i18n -I$(srcdir)/../toolutil | 45 CPPFLAGS += -I$(top_srcdir)/common -I$(top_srcdir)/i18n -I$(srcdir)/../toolutil |
| 46 CPPFLAGS += -DUNISTR_FROM_CHAR_EXPLICIT=explicit -DUNISTR_FROM_STRING_EXPLICIT=e
xplicit |
| 46 LIBS = $(LIBICUI18N) $(LIBICUUC) $(DEFAULT_LIBS) $(LIB_M) | 47 LIBS = $(LIBICUI18N) $(LIBICUUC) $(DEFAULT_LIBS) $(LIB_M) |
| 47 | 48 |
| 48 ifeq ($(PKGDATA_OPTS),) | 49 ifeq ($(PKGDATA_OPTS),) |
| 49 PKGDATA_OPTS = -O pkgdata.inc | 50 PKGDATA_OPTS = -O pkgdata.inc |
| 50 endif | 51 endif |
| 51 | 52 |
| 52 ## generic settings for data - common. | 53 ## generic settings for data - common. |
| 53 PKGMODE=common | 54 PKGMODE=common |
| 54 INSTALLTO=$(DESTDIR)$(ICUDATA_DIR) | 55 INSTALLTO=$(DESTDIR)$(ICUDATA_DIR) |
| 55 UCONVMSG_LIB=package-resfiles | 56 UCONVMSG_LIB=package-resfiles |
| (...skipping 114 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 170 | 171 |
| 171 $(MSGNAME)/%.res: $(srcdir)/$(RESOURCESDIR)/%.txt | 172 $(MSGNAME)/%.res: $(srcdir)/$(RESOURCESDIR)/%.txt |
| 172 $(INVOKE) $(TOOLBINDIR)/genrb -e UTF-8 -s $(^D) -d $(@D) $(^F) | 173 $(INVOKE) $(TOOLBINDIR)/genrb -e UTF-8 -s $(^D) -d $(@D) $(^F) |
| 173 | 174 |
| 174 install-man: $(ALL_MAN_FILES) | 175 install-man: $(ALL_MAN_FILES) |
| 175 $(MKINSTALLDIRS) $(DESTDIR)$(mandir)/man$(SECTION) | 176 $(MKINSTALLDIRS) $(DESTDIR)$(mandir)/man$(SECTION) |
| 176 $(INSTALL_DATA) $? $(DESTDIR)$(mandir)/man$(SECTION) | 177 $(INSTALL_DATA) $? $(DESTDIR)$(mandir)/man$(SECTION) |
| 177 | 178 |
| 178 | 179 |
| 179 | 180 |
| OLD | NEW |