1## Makefile.in for ICU - tools/genpname 2## Copyright (c) 1999-2005, International Business Machines Corporation and 3## others. All Rights Reserved. 4## Steven R. Loomis 5 6## Source directory information 7srcdir = @srcdir@ 8top_srcdir = @top_srcdir@ 9 10top_builddir = ../.. 11 12include $(top_builddir)/icudefs.mk 13 14## Build directory information 15subdir = tools/genpname 16 17TARGET_STUB_NAME = genpname 18 19SECTION = 8 20 21MAN_FILES = $(TARGET_STUB_NAME).$(SECTION) 22 23 24## Extra files to remove for 'make clean' 25CLEANFILES = *~ $(DEPS) 26 27## Target information 28TARGET = $(BINDIR)/$(TARGET_STUB_NAME)$(EXEEXT) 29 30ifneq ($(top_builddir),$(top_srcdir)) 31CPPFLAGS += -I$(top_builddir)/common 32endif 33CPPFLAGS += -I$(top_srcdir)/common -I$(srcdir)/../toolutil 34LIBS = $(LIBICUTOOLUTIL) $(LIBICUI18N) $(LIBICUUC) $(DEFAULT_LIBS) $(LIB_M) 35 36OBJECTS = genpname.o 37 38DEPS = $(OBJECTS:.o=.d) 39 40## List of phony targets 41.PHONY : all all-local install install-local clean clean-local \ 42distclean distclean-local dist dist-local check check-local install-man 43 44## Clear suffix list 45.SUFFIXES : 46 47## List of standard targets 48all: all-local 49install: install-local 50clean: clean-local 51distclean : distclean-local 52dist: dist-local 53check: all check-local 54 55all-local: $(TARGET) 56 57install-local: all-local 58# $(MKINSTALLDIRS) $(DESTDIR)$(sbindir) 59# $(INSTALL) $(TARGET) $(DESTDIR)$(sbindir) 60 61install-man: $(MAN_FILES) 62# $(MKINSTALLDIRS) $(DESTDIR)$(mandir)/man$(SECTION) 63# $(INSTALL_DATA) $? $(DESTDIR)$(mandir)/man$(SECTION) 64 65dist-local: 66 67clean-local: 68 test -z "$(CLEANFILES)" || $(RMV) $(CLEANFILES) 69 $(RMV) $(TARGET) $(OBJECTS) 70 71distclean-local: clean-local 72 $(RMV) Makefile 73 74check-local: all-local 75 76Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status 77 cd $(top_builddir) \ 78 && CONFIG_FILES=$(subdir)/$@ CONFIG_HEADERS= $(SHELL) ./config.status 79 80$(TARGET) : $(OBJECTS) 81 $(LINK.cc) $(OUTOPT)$@ $^ $(LIBS) 82 $(POST_BUILD_STEP) 83 84 85%.$(SECTION): $(srcdir)/%.$(SECTION).in 86 cd $(top_builddir) \ 87 && CONFIG_FILES=$(subdir)/$@ CONFIG_HEADERS= $(SHELL) ./config.status 88 89 90ifeq (,$(MAKECMDGOALS)) 91-include $(DEPS) 92else 93ifneq ($(patsubst %clean,,$(MAKECMDGOALS)),) 94-include $(DEPS) 95endif 96endif 97 98