1999-12-10 01:44:19 +00:00
|
|
|
## Makefile.in for ICU - tools/genprops
|
2000-01-17 19:48:20 +00:00
|
|
|
## Copyright (c) 1999, International Business Machines Corporation and
|
|
|
|
## others. All Rights Reserved.
|
1999-12-10 01:44:19 +00:00
|
|
|
## Steven R. Loomis
|
|
|
|
|
|
|
|
## Shell to use
|
|
|
|
SHELL = @SHELL@
|
|
|
|
VERSION = @VERSION@
|
|
|
|
UNICODE_VERSION = @UNICODE_VERSION@
|
|
|
|
|
2000-04-24 20:20:09 +00:00
|
|
|
ICUDATADIR=@DATABUILDDIR@
|
2000-04-21 19:49:30 +00:00
|
|
|
UNICODEDATADIR=$(top_srcdir)/../data/unidata
|
1999-12-10 01:44:19 +00:00
|
|
|
|
|
|
|
## Install directory information
|
|
|
|
srcdir = @srcdir@
|
|
|
|
top_srcdir = @top_srcdir@
|
|
|
|
prefix = @prefix@
|
|
|
|
exec_prefix = @exec_prefix@
|
|
|
|
|
|
|
|
bindir = @bindir@
|
|
|
|
sbindir = @sbindir@
|
|
|
|
datadir = @datadir@
|
|
|
|
libdir = @libdir@
|
|
|
|
includedir = @includedir@
|
|
|
|
|
|
|
|
pkgdatadir = $(datadir)/@PACKAGE@
|
|
|
|
pkglibdir = $(libdir)/@PACKAGE@
|
|
|
|
pkgincludedir = $(includedir)/@PACKAGE@
|
|
|
|
|
|
|
|
## Install program information
|
|
|
|
mkinstalldirs = $(SHELL) $(top_srcdir)/mkinstalldirs
|
|
|
|
|
|
|
|
INSTALL = @INSTALL@
|
|
|
|
INSTALL_PROGRAM = @INSTALL_PROGRAM@
|
|
|
|
INSTALL_DATA = @INSTALL_DATA@
|
|
|
|
|
|
|
|
## Compiler/tools information
|
|
|
|
CC = @CC@
|
|
|
|
CXX = @CXX@
|
|
|
|
PACKAGE = @PACKAGE@
|
|
|
|
VERSION = @VERSION@
|
|
|
|
|
|
|
|
## Platform-specific setup
|
|
|
|
@host_frag@
|
|
|
|
|
|
|
|
## Build directory information
|
|
|
|
top_builddir = ../..
|
|
|
|
subdir = tools/genprops
|
|
|
|
|
|
|
|
## Extra files to remove for 'make clean'
|
|
|
|
CLEANFILES = *~
|
|
|
|
|
|
|
|
## Target information
|
|
|
|
TARGET = genprops
|
|
|
|
|
|
|
|
DEFS = @DEFS@
|
2000-04-24 20:20:09 +00:00
|
|
|
CPPFLAGS = @CPPFLAGS@ -I$(top_builddir)/common -I$(top_srcdir)/common -I$(srcdir)/../toolutil
|
1999-12-10 01:44:19 +00:00
|
|
|
CFLAGS = @CFLAGS@
|
|
|
|
CXXFLAGS = @CXXFLAGS@
|
|
|
|
LDFLAGS = @LDFLAGS@ \
|
2000-07-13 20:03:16 +00:00
|
|
|
$(LD_RPATH)$(LD_RPATH_PRE)$(top_builddir)/common@ld_rpath_suf@$(LD_RPATH_PRE)$(top_builddir)/tools/toolutil@ld_rpath_suf@$(LD_RPATH_PRE)$(libdir)
|
2000-01-21 07:30:58 +00:00
|
|
|
LIBS = $(LIBICU-UC) @LIBS@ @LIB_M@ $(LIBICU-TOOLUTIL)
|
1999-12-10 01:44:19 +00:00
|
|
|
|
2000-04-22 18:35:29 +00:00
|
|
|
OBJECTS = genprops.o store.o
|
1999-12-10 01:44:19 +00:00
|
|
|
|
|
|
|
DEPS = $(OBJECTS:.o=.d)
|
|
|
|
|
|
|
|
|
|
|
|
## List of phony targets
|
|
|
|
.PHONY : all all-local install install-local clean clean-local \
|
2000-03-09 06:36:27 +00:00
|
|
|
distclean distclean-local dist dist-local check \
|
1999-12-10 01:44:19 +00:00
|
|
|
check-local build-data
|
|
|
|
|
|
|
|
## Clear suffix list
|
|
|
|
.SUFFIXES :
|
|
|
|
|
|
|
|
## List of standard targets
|
|
|
|
all: all-local
|
|
|
|
install: install-local
|
|
|
|
clean: clean-local
|
|
|
|
distclean : distclean-local
|
|
|
|
dist: dist-local
|
2000-08-01 01:55:54 +00:00
|
|
|
check: all check-local
|
1999-12-10 01:44:19 +00:00
|
|
|
|
|
|
|
all-local: $(TARGET) build-data
|
|
|
|
|
2000-03-09 06:36:27 +00:00
|
|
|
install-local: all-local build-data
|
2000-03-10 22:55:19 +00:00
|
|
|
$(mkinstalldirs) $(DESTDIR)$(sbindir)
|
2000-04-24 20:43:09 +00:00
|
|
|
$(INSTALL) $(TARGET) $(DESTDIR)$(sbindir)/$(TARGET)
|
1999-12-10 01:44:19 +00:00
|
|
|
|
2000-04-21 19:49:30 +00:00
|
|
|
build-data: $(ICUDATADIR)/uprops.dat
|
1999-12-10 01:44:19 +00:00
|
|
|
|
2000-04-21 19:49:30 +00:00
|
|
|
$(ICUDATADIR)/uprops.dat: $(UNICODEDATADIR)/UnicodeData.txt $(UNICODEDATADIR)/Mirror.txt $(TARGET)
|
|
|
|
./$(TARGET) -s $(UNICODEDATADIR) -d $(ICUDATADIR) -u $(UNICODE_VERSION)
|
1999-12-10 01:44:19 +00:00
|
|
|
|
|
|
|
dist-local:
|
|
|
|
|
2000-03-09 06:36:27 +00:00
|
|
|
clean-local:
|
2000-05-15 22:32:11 +00:00
|
|
|
test -z "$(CLEANFILES)" || $(RMV) $(CLEANFILES)
|
|
|
|
$(RMV) $(TARGET) $(OBJECTS)
|
1999-12-10 01:44:19 +00:00
|
|
|
|
|
|
|
distclean-local: clean-local
|
2000-05-15 22:32:11 +00:00
|
|
|
$(RMV) Makefile $(DEPS) $(RES_FILES) $(TEST_FILES)
|
1999-12-10 01:44:19 +00:00
|
|
|
|
2000-08-01 01:55:54 +00:00
|
|
|
check-local: all-local
|
1999-12-10 01:44:19 +00:00
|
|
|
|
|
|
|
Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status
|
|
|
|
cd $(top_builddir) \
|
|
|
|
&& CONFIG_FILES=$(subdir)/$@ CONFIG_HEADERS= $(SHELL) ./config.status
|
|
|
|
|
|
|
|
$(TARGET) : $(OBJECTS)
|
|
|
|
$(LINK.cc) -o $@ $^ $(LIBS)
|
|
|
|
|
2000-04-13 22:08:07 +00:00
|
|
|
ifeq (,$(MAKECMDGOALS))
|
|
|
|
-include $(DEPS)
|
|
|
|
else
|
2000-04-05 22:14:24 +00:00
|
|
|
ifneq ($(patsubst %clean,,$(MAKECMDGOALS)),)
|
1999-12-10 01:44:19 +00:00
|
|
|
-include $(DEPS)
|
|
|
|
endif
|
2000-04-24 20:43:09 +00:00
|
|
|
endif
|
|
|
|
|