| OLD | NEW |
| 1 ## Makefile.in for ICU - tools/genctd | 1 ## Makefile.in for ICU - tools/genctd |
| 2 ## Copyright (c) 2002-2006 International Business Machines Corporation and | 2 ## Copyright (c) 2002-2006 International Business Machines Corporation and |
| 3 ## others. All Rights Reserved. | 3 ## others. All Rights Reserved. |
| 4 | 4 |
| 5 ## Source directory information | 5 ## Source directory information |
| 6 srcdir = @srcdir@ | 6 srcdir = @srcdir@ |
| 7 top_srcdir = @top_srcdir@ | 7 top_srcdir = @top_srcdir@ |
| 8 | 8 |
| 9 top_builddir = ../.. | 9 top_builddir = ../.. |
| 10 | 10 |
| 11 include $(top_builddir)/icudefs.mk | 11 include $(top_builddir)/icudefs.mk |
| 12 | 12 |
| 13 ## Build directory information | 13 ## Build directory information |
| 14 subdir = tools/genctd | 14 subdir = tools/genctd |
| 15 | 15 |
| 16 TARGET_STUB_NAME = genctd | 16 TARGET_STUB_NAME = genctd |
| 17 | 17 |
| 18 SECTION = 1 | 18 SECTION = 1 |
| 19 | 19 |
| 20 MAN_FILES = $(TARGET_STUB_NAME).$(SECTION) | 20 MAN_FILES = $(TARGET_STUB_NAME).$(SECTION) |
| 21 | 21 |
| 22 | 22 |
| 23 ## Extra files to remove for 'make clean' | 23 ## Extra files to remove for 'make clean' |
| 24 CLEANFILES = *~ $(DEPS) $(MAN_FILES) | 24 CLEANFILES = *~ $(DEPS) $(MAN_FILES) |
| 25 | 25 |
| 26 ## Target information | 26 ## Target informationcd |
| 27 TARGET = $(BINDIR)/$(TARGET_STUB_NAME)$(EXEEXT) | 27 TARGET = $(BINDIR)/$(TARGET_STUB_NAME)$(EXEEXT) |
| 28 | 28 |
| 29 ifneq ($(top_builddir),$(top_srcdir)) | 29 ifneq ($(top_builddir),$(top_srcdir)) |
| 30 CPPFLAGS += -I$(top_builddir)/common | 30 CPPFLAGS += -I$(top_builddir)/common |
| 31 endif | 31 endif |
| 32 CPPFLAGS += -I$(top_srcdir)/common -I$(srcdir)/../toolutil | 32 CPPFLAGS += -I$(top_srcdir)/common -I$(srcdir)/../toolutil -I$(top_srcdir)/i18n |
| 33 LIBS = $(LIBICUTOOLUTIL) $(LIBICUI18N) $(LIBICUUC) $(DEFAULT_LIBS) $(LIB_M) | 33 LIBS = $(LIBICUTOOLUTIL) $(LIBICUI18N) $(LIBICUUC) $(DEFAULT_LIBS) $(LIB_M) |
| 34 | 34 |
| 35 OBJECTS = genctd.o | 35 OBJECTS = genctd.o |
| 36 | 36 |
| 37 DEPS = $(OBJECTS:.o=.d) | 37 DEPS = $(OBJECTS:.o=.d) |
| 38 | 38 |
| 39 ## List of phony targets | 39 ## List of phony targets |
| 40 .PHONY : all all-local install install-local clean clean-local \ | 40 .PHONY : all all-local install install-local clean clean-local \ |
| 41 distclean distclean-local dist dist-local check check-local install-man | 41 distclean distclean-local dist dist-local check check-local install-man |
| 42 | 42 |
| (...skipping 44 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 87 | 87 |
| 88 | 88 |
| 89 ifeq (,$(MAKECMDGOALS)) | 89 ifeq (,$(MAKECMDGOALS)) |
| 90 -include $(DEPS) | 90 -include $(DEPS) |
| 91 else | 91 else |
| 92 ifneq ($(patsubst %clean,,$(MAKECMDGOALS)),) | 92 ifneq ($(patsubst %clean,,$(MAKECMDGOALS)),) |
| 93 -include $(DEPS) | 93 -include $(DEPS) |
| 94 endif | 94 endif |
| 95 endif | 95 endif |
| 96 | 96 |
| OLD | NEW |