| OLD | NEW |
| 1 ################################################################################
# | 1 ################################################################################
# |
| 2 ## Makefile.in for ICU - tools/genrb
# | 2 ## Makefile.in for ICU - tools/genrb
# |
| 3 ## Copyright (c) 1999-2013, International Business Machines Corporation and
# | 3 ## Copyright (c) 1999-2014, International Business Machines Corporation and
# |
| 4 ## others. All Rights Reserved.
# | 4 ## others. All Rights Reserved.
# |
| 5 ################################################################################
# | 5 ################################################################################
# |
| 6 | 6 |
| 7 ## Source directory information | 7 ## Source directory information |
| 8 srcdir = @srcdir@ | 8 srcdir = @srcdir@ |
| 9 top_srcdir = @top_srcdir@ | 9 top_srcdir = @top_srcdir@ |
| 10 | 10 |
| 11 top_builddir = ../.. | 11 top_builddir = ../.. |
| 12 | 12 |
| 13 include $(top_builddir)/icudefs.mk | 13 include $(top_builddir)/icudefs.mk |
| (...skipping 11 matching lines...) Expand all Loading... |
| 25 | 25 |
| 26 ## Extra files to remove for 'make clean' | 26 ## Extra files to remove for 'make clean' |
| 27 CLEANFILES = *~ $(MAN_FILES) $(DEPS) $(DERB_DEPS) | 27 CLEANFILES = *~ $(MAN_FILES) $(DEPS) $(DERB_DEPS) |
| 28 | 28 |
| 29 ## Target information | 29 ## Target information |
| 30 TARGET = $(BINDIR)/$(TARGET_STUB_NAME)$(EXEEXT) | 30 TARGET = $(BINDIR)/$(TARGET_STUB_NAME)$(EXEEXT) |
| 31 # derb depends on icuio | 31 # derb depends on icuio |
| 32 @ICUIO_TRUE@DERB = $(BINDIR)/$(DERB_STUB_NAME)$(EXEEXT) | 32 @ICUIO_TRUE@DERB = $(BINDIR)/$(DERB_STUB_NAME)$(EXEEXT) |
| 33 | 33 |
| 34 CPPFLAGS += -I$(top_srcdir)/common -I$(top_srcdir)/i18n -I$(srcdir)/../toolutil
-I$(top_srcdir)/io | 34 CPPFLAGS += -I$(top_srcdir)/common -I$(top_srcdir)/i18n -I$(srcdir)/../toolutil
-I$(top_srcdir)/io |
| 35 CPPFLAGS += -DUNISTR_FROM_CHAR_EXPLICIT=explicit -DUNISTR_FROM_STRING_EXPLICIT=e
xplicit |
| 35 LIBS = $(LIBICUTOOLUTIL) $(LIBICUI18N) $(LIBICUUC) $(DEFAULT_LIBS) $(LIB_M) | 36 LIBS = $(LIBICUTOOLUTIL) $(LIBICUI18N) $(LIBICUUC) $(DEFAULT_LIBS) $(LIB_M) |
| 36 | 37 |
| 37 OBJECTS = errmsg.o genrb.o parse.o read.o reslist.o ustr.o rbutil.o \ | 38 OBJECTS = errmsg.o genrb.o parse.o read.o reslist.o ustr.o rbutil.o \ |
| 38 wrtjava.o rle.o wrtxml.o prscmnts.o | 39 wrtjava.o rle.o wrtxml.o prscmnts.o |
| 39 DERB_OBJ = derb.o | 40 DERB_OBJ = derb.o |
| 40 | 41 |
| 41 DEPS = $(OBJECTS:.o=.d) | 42 DEPS = $(OBJECTS:.o=.d) |
| 42 DERB_DEPS = $(DERB_OBJ:.o=.d) | 43 DERB_DEPS = $(DERB_OBJ:.o=.d) |
| 43 | 44 |
| 44 -include Makefile.local | 45 -include Makefile.local |
| (...skipping 56 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 101 | 102 |
| 102 | 103 |
| 103 ifeq (,$(MAKECMDGOALS)) | 104 ifeq (,$(MAKECMDGOALS)) |
| 104 -include $(DEPS) | 105 -include $(DEPS) |
| 105 -include $(DERB_DEPS) | 106 -include $(DERB_DEPS) |
| 106 else | 107 else |
| 107 ifneq ($(patsubst %clean,,$(MAKECMDGOALS)),) | 108 ifneq ($(patsubst %clean,,$(MAKECMDGOALS)),) |
| 108 -include $(DEPS) | 109 -include $(DEPS) |
| 109 endif | 110 endif |
| 110 endif | 111 endif |
| OLD | NEW |