Home | History | Annotate | Download | only in uconv
      1 ## Copyright (C) 2016 and later: Unicode, Inc. and others.
      2 ## License & terms of use: http://www.unicode.org/copyright.html
      3 ## ******************************************************************************
      4 ## *
      5 ## *   Copyright (C) 1999-2014, International Business Machines
      6 ## *   Corporation and others.  All Rights Reserved.
      7 ## *
      8 ## *******************************************************************************
      9 ## Makefile.in for ICU - uconv
     10 ## Steven  R. Loomis
     11 
     12 ## Set the following to dll or static or common..
     13 UCONVMSG_MODE=static
     14 ##############################################################
     15 
     16 srcdir=@srcdir@
     17 top_srcdir=@top_srcdir@
     18 
     19 top_builddir = ../..
     20 subdir = extra/uconv
     21 
     22 include $(top_builddir)/icudefs.mk
     23 
     24 MSGNAME=uconvmsg
     25 
     26 # RESSRC comes from resfiles.mk
     27 FILESEPCHAR=/
     28 include $(srcdir)/resfiles.mk
     29 
     30 RESDIR=$(MSGNAME)
     31 RESFILES=$(RESSRC:$(RESOURCESDIR)$(FILESEPCHAR)%.txt=$(RESDIR)/%.res)
     32 
     33 ##
     34 
     35 TARGET_STUB_NAME = uconv
     36 
     37 SECTION = 1
     38 
     39 ALL_MAN_FILES = $(TARGET_STUB_NAME).$(SECTION)
     40 
     41 ## Extra files to remove for 'make clean'
     42 CLEANFILES = *~ $(DEPS) $(ALL_MAN_FILES)
     43 
     44 ## Target information
     45 TARGET = $(BINDIR)/$(TARGET_STUB_NAME)$(EXEEXT)
     46 
     47 CPPFLAGS += -I$(top_srcdir)/common -I$(top_srcdir)/i18n -I$(srcdir)/../toolutil
     48 CPPFLAGS += -DUNISTR_FROM_CHAR_EXPLICIT=explicit -DUNISTR_FROM_STRING_EXPLICIT=explicit
     49 LIBS = $(LIBICUI18N) $(LIBICUUC) $(DEFAULT_LIBS) $(LIB_M)
     50 
     51 ifeq ($(PKGDATA_OPTS),)
     52 PKGDATA_OPTS = -O pkgdata.inc
     53 endif
     54 
     55 ## generic settings for data - common.
     56 PKGMODE=common
     57 INSTALLTO=$(DESTDIR)$(ICUDATA_DIR)
     58 UCONVMSG_LIB=package-resfiles
     59 
     60 ## Static mode
     61 ifeq ($(UCONVMSG_MODE),static)
     62 DEFS += -DUCONVMSG_LINK=$(MSGNAME)
     63 UCONVMSG_LIB = $(RESDIR)/$(LIBPREFIX)$(STATIC_PREFIX_WHEN_USED)$(MSGNAME).$(A)
     64 LIBS += $(UCONVMSG_LIB)
     65 PKGMODE=static
     66 INSTALLTO=$(libdir)
     67 endif
     68 
     69 ## DLL mode
     70 ifeq ($(UCONVMSG_MODE),dll)
     71 DEFS += -DUCONVMSG_LINK=$(MSGNAME)
     72 LIBS += -L$(RESDIR) -l$(MSGNAME)
     73 PKGMODE=dll
     74 INSTALLTO=$(libdir)
     75 endif
     76 
     77 OBJECTS = uconv.o uwmsg.o
     78 
     79 DEPS = $(OBJECTS:.o=.d)
     80 
     81 ## List of phony targets
     82 .PHONY : all all-local install install-local clean clean-local \
     83 distclean resclean distclean-local dist dist-local \
     84 check check-local build-dir package-resfiles install-resfiles install-man
     85 
     86 ## Clear suffix list
     87 .SUFFIXES :
     88 
     89 ## List of standard targets
     90 all: all-local
     91 
     92 install: install-local
     93 clean: clean-local
     94 distclean : distclean-local
     95 dist: dist-local
     96 check: check-local
     97 
     98 all-local: build-dir $(TARGET) $(ALL_MAN_FILES)
     99 
    100 install-local: all-local install-target install-resfiles install-man
    101 
    102 install-target: all-local
    103 	$(MKINSTALLDIRS) $(DESTDIR)$(bindir)
    104 	$(INSTALL) $(TARGET) $(DESTDIR)$(bindir)
    105 
    106 dist-local:
    107 
    108 clean-local: resclean
    109 	test -z "$(CLEANFILES)" || $(RMV) $(CLEANFILES) $(RESFILES)
    110 	$(RMV) $(OBJECTS) $(TARGET)
    111 
    112 resclean:
    113 	@#-$(INVOKE) $(TOOLBINDIR)/pkgdata --clean -p $(RESDIR) -O pkgdata.inc -m $(PKGMODE) -d $(RESDIR) -T $(RESDIR) $(RESDIR)/$(RESDIR).lst
    114 	$(RMV) pkgdata.inc $(RESDIR)
    115 
    116 distclean-local: clean-local
    117 	$(RMV) Makefile $(DEPS)
    118 
    119 check-local: $(TARGET)
    120 ifneq (,$(filter $(PKGDATA_MODE),files common))
    121 	@echo "Currently, pkgdata is in \"$(PKGDATA_MODE)\" mode."
    122 	@echo "To test uconv, run this manually after installing ICU:"
    123 	@echo "\"./$(TARGET) -f ibm-37 $(srcdir)/samples/ibm-37-test.txt\""
    124 else
    125 	$(INVOKE) ./$(TARGET) -f ibm-37 $(srcdir)/samples/ibm-37-test.txt
    126 endif
    127 
    128 Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status
    129 	cd $(top_builddir) \
    130 	 && CONFIG_FILES=$(subdir)/$@ CONFIG_HEADERS= $(SHELL) ./config.status
    131 
    132 pkgdata.inc: pkgdataMakefile
    133 	$(MAKE) -f pkgdataMakefile
    134 
    135 build-dir:
    136 	@$(MKINSTALLDIRS) $(RESDIR)
    137 
    138 pkgdataMakefile:
    139 	cd $(top_builddir) \
    140 	&& CONFIG_FILES=$(subdir)/$@ CONFIG_HEADERS= $(SHELL) ./config.status
    141 
    142 $(TARGET_STUB_NAME).$(SECTION): $(srcdir)/$(TARGET_STUB_NAME).$(SECTION).in pkgdata.inc
    143 	cd $(top_builddir) \
    144 	 && CONFIG_FILES=$(subdir)/$(TARGET_STUB_NAME).$(SECTION) CONFIG_HEADERS= $(SHELL) ./config.status
    145 
    146 $(TARGET) : $(OBJECTS)  $(UCONVMSG_LIB)
    147 	$(LINK.cc) $(OUTOPT)$@ $(OBJECTS) $(LIBS)
    148 	$(POST_BUILD_STEP)
    149 
    150 # The | is an order-only prerequisite. This helps when the -j option is used,
    151 # and we don't want the files to be built before the directories are built.
    152 ifneq ($(filter order-only,$(.FEATURES)),)
    153 $(RESFILES) $(RESDIR)/$(RESDIR).lst: | build-dir
    154 endif
    155 
    156 $(UCONVMSG_LIB): $(RESFILES) $(RESDIR)/$(RESDIR).lst pkgdata.inc
    157 	$(INVOKE) $(PKGDATA_INVOKE_OPTS) $(TOOLBINDIR)/pkgdata -p $(MSGNAME) $(PKGDATA_OPTS) -m $(PKGMODE) -s $(RESDIR) -d $(RESDIR) -T $(RESDIR) $(RESDIR)/$(RESDIR).lst
    158 
    159 $(RESDIR)/$(RESDIR).lst: Makefile $(srcdir)/resfiles.mk
    160 	@-$(RMV) $@
    161 	@for file in $(RESFILES:$(RESDIR)/%.res=%.res); do \
    162 	  echo $$file >> $@; \
    163 	done;
    164 
    165 # no install for static mode
    166 ifneq ($(UCONVMSG_MODE),static)
    167 install-resfiles: $(RESFILES) $(RESDIR)/$(RESDIR).lst pkgdata.inc 
    168 	$(MKINSTALLDIRS) $(DESTDIR)$(ICUDATA_DIR)
    169 	$(INVOKE) $(TOOLBINDIR)/pkgdata -p $(RESDIR) -O pkgdata.inc -m $(PKGMODE) -d $(RESDIR) -I $(INSTALLTO) -T $(RESDIR) $(RESDIR)/$(RESDIR).lst
    170 else
    171 install-resfiles:
    172 endif
    173 
    174 $(MSGNAME)/%.res: $(srcdir)/$(RESOURCESDIR)/%.txt
    175 	$(INVOKE) $(TOOLBINDIR)/genrb -e UTF-8 -s $(^D) -d $(@D) $(^F)
    176 
    177 install-man: $(ALL_MAN_FILES)
    178 	$(MKINSTALLDIRS) $(DESTDIR)$(mandir)/man$(SECTION)
    179 	$(INSTALL_DATA) $? $(DESTDIR)$(mandir)/man$(SECTION)
    180 
    181 
    182 
    183