1 ## Makefile.in for ICU - tools/genpname
2 ## Copyright (c) 1999-2004, International Business Machines Corporation and
3 ## others. All Rights Reserved.
6 ## Source directory information
8 top_srcdir = @top_srcdir@
12 include $(top_builddir)/icudefs.mk
16 ## Build directory information
17 subdir = tools/genpname
19 TARGET_STUB_NAME = genpname
21 ## Extra files to remove for 'make clean'
22 CLEANFILES = *~ $(DEPS)
25 TARGET = $(BINDIR)/$(TARGET_STUB_NAME)$(EXEEXT)
27 CPPFLAGS += -I$(top_builddir)/common -I$(top_srcdir)/common -I$(srcdir)/../toolutil
28 LIBS = $(LIBICUTOOLUTIL) $(LIBICUUC) $(DEFAULT_LIBS) $(LIB_M)
32 DEPS = $(OBJECTS:.o=.d)
34 ## List of phony targets
35 .PHONY : all all-local install install-local clean clean-local \
36 distclean distclean-local dist dist-local check \
42 ## List of standard targets
44 install: install-local
46 distclean : distclean-local
48 check: all check-local
50 all-local: $(TARGET) $(MAN_FILES)
52 install-local: all-local
53 $(MKINSTALLDIRS) $(DESTDIR)$(sbindir)
54 $(INSTALL) $(TARGET) $(DESTDIR)$(sbindir)
59 test -z "$(CLEANFILES)" || $(RMV) $(CLEANFILES)
60 $(RMV) $(TARGET) $(OBJECTS)
62 distclean-local: clean-local
65 check-local: all-local
67 Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status
69 && CONFIG_FILES=$(subdir)/$@ CONFIG_HEADERS= $(SHELL) ./config.status
71 $(TARGET) : $(OBJECTS)
72 $(LINK.cc) $(OUTOPT)$@ $^ $(LIBS)
74 ifeq (,$(MAKECMDGOALS))
77 ifneq ($(patsubst %clean,,$(MAKECMDGOALS)),)