You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
118 lines
2.9 KiB
118 lines
2.9 KiB
4 months ago
|
## Makefile.in for ICU - tools/icuinfo
|
||
|
## Copyright (C) 2016 and later: Unicode, Inc. and others.
|
||
|
## License & terms of use: http://www.unicode.org/copyright.html
|
||
|
## Copyright (c) 1999-2015, International Business Machines Corporation and
|
||
|
## others. All Rights Reserved.
|
||
|
## Madhu Katragadda
|
||
|
|
||
|
## Source directory information
|
||
|
srcdir = @srcdir@
|
||
|
top_srcdir = @top_srcdir@
|
||
|
|
||
|
top_builddir = ../..
|
||
|
|
||
|
include $(top_builddir)/icudefs.mk
|
||
|
|
||
|
## Build directory information
|
||
|
subdir = tools/icuinfo
|
||
|
|
||
|
## Extra files to remove for 'make clean'
|
||
|
CLEANFILES = *~ $(DEPS) $(PLUGIN_OBJECTS) $(PLUGINFILE) $(PLUGIN)
|
||
|
|
||
|
## Target information
|
||
|
TARGET = icuinfo$(EXEEXT)
|
||
|
|
||
|
CPPFLAGS += -I$(top_srcdir)/common -I$(srcdir)/../toolutil -I$(top_srcdir)/tools/ctestfw
|
||
|
CPPFLAGS+= -I$(top_srcdir)/i18n
|
||
|
LIBS = $(LIBICUTOOLUTIL) $(LIBICUI18N) $(LIBICUUC) $(DEFAULT_LIBS) $(LIB_M)
|
||
|
|
||
|
SOURCES = $(shell cat $(srcdir)/sources.txt)
|
||
|
OBJECTS = $(SOURCES:.cpp=.o)
|
||
|
@PLUGINS_TRUE@PLUGIN_SOURCES = $(shell cat $(srcdir)/plugin_sources.txt)
|
||
|
@PLUGINS_TRUE@PLUGIN_OBJECTS = $(@PLUGINS_TRUE@PLUGIN_SOURCES:.c=.o)
|
||
|
|
||
|
DEPS = $(OBJECTS:.o=.d)
|
||
|
|
||
|
# pass some information
|
||
|
|
||
|
ICUINFO_OPTS=-i ../../data/out/build/$(ICUDATA_PLATFORM_NAME) -x $(top_builddir)/config/icuinfo.xml -v -K
|
||
|
|
||
|
## List of phony targets
|
||
|
.PHONY : all all-local install install-local clean clean-local \
|
||
|
distclean distclean-local dist dist-local check check-local plugin-check
|
||
|
|
||
|
## Clear suffix list
|
||
|
.SUFFIXES :
|
||
|
|
||
|
## List of standard targets
|
||
|
all: all-local
|
||
|
install: install-local
|
||
|
clean: clean-local
|
||
|
distclean : distclean-local
|
||
|
dist: dist-local
|
||
|
check: all check-local
|
||
|
|
||
|
all-local: $(TARGET)
|
||
|
|
||
|
install-local: all-local
|
||
|
$(MKINSTALLDIRS) $(DESTDIR)$(bindir)
|
||
|
$(INSTALL) $(TARGET) $(DESTDIR)$(bindir)
|
||
|
|
||
|
dist-local:
|
||
|
|
||
|
clean-local:
|
||
|
test -z "$(CLEANFILES)" || $(RMV) $(CLEANFILES)
|
||
|
$(RMV) $(TARGET) $(OBJECTS)
|
||
|
|
||
|
distclean-local: clean-local
|
||
|
$(RMV) Makefile
|
||
|
|
||
|
check-local: $(TARGET)
|
||
|
$(INVOKE) ./$(TARGET) $(ICUINFO_OPTS)
|
||
|
|
||
|
Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status
|
||
|
cd $(top_builddir) \
|
||
|
&& CONFIG_FILES=$(subdir)/$@ CONFIG_HEADERS= $(SHELL) ./config.status
|
||
|
-include Makefile.local
|
||
|
|
||
|
$(TARGET) : $(OBJECTS)
|
||
|
$(LINK.cc) $(OUTOPT)$@ $^ $(LIBS)
|
||
|
$(POST_BUILD_STEP)
|
||
|
|
||
|
PLUGIN=$(LIBPREFIX)plugin.$(SO)
|
||
|
SO_TARGET=$(PLUGIN)
|
||
|
|
||
|
PLUGINDIR=$(shell pwd)
|
||
|
|
||
|
PLUGINFILE=$(PLUGINDIR)/icuplugins$(SO_TARGET_VERSION_MAJOR).txt
|
||
|
|
||
|
CFLAGS+=$(SHAREDLIBCFLAGS)
|
||
|
|
||
|
@PLUGINS_TRUE@HAVE_PLUGINS=yes
|
||
|
|
||
|
ifeq ($(HAVE_PLUGINS),yes)
|
||
|
$(PLUGINFILE): Makefile
|
||
|
echo "$(CURR_FULL_DIR)/$(PLUGIN) myPlugin x=4" > $@
|
||
|
|
||
|
|
||
|
$(PLUGIN): $(PLUGIN_OBJECTS)
|
||
|
$(SHLIB.cc) $(SHAREDLIBCFLAGS) $(LD_SONAME) $(OUTOPT)$@ $^ $(LIBS)
|
||
|
|
||
|
plugin: $(PLUGIN)
|
||
|
|
||
|
plugin-check: $(PLUGIN) $(PLUGINFILE)
|
||
|
$(INVOKE) ICU_PLUGINS="$(CURR_FULL_DIR)" ./$(TARGET) -v -L
|
||
|
else
|
||
|
plugin plugin-check $(PLUGIN):
|
||
|
@echo "Plugins are disabled (use --enable-plugins to enable)"
|
||
|
endif
|
||
|
|
||
|
ifeq (,$(MAKECMDGOALS))
|
||
|
-include $(DEPS)
|
||
|
else
|
||
|
ifneq ($(patsubst %clean,,$(MAKECMDGOALS)),)
|
||
|
-include $(DEPS)
|
||
|
endif
|
||
|
endif
|
||
|
|