1 ## Makefile.in for ICU - tools/genpname
2 ## Copyright (c) 1999-2003, 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 ## Extra files to remove for 'make clean'
20 CLEANFILES = *~ $(DEPS) $(OBJECTS) $(TARGET)
23 TARGET = genpname$(EXEEXT)
25 CPPFLAGS += -I$(top_builddir)/common -I$(top_srcdir)/common -I$(srcdir)/../toolutil
26 LIBS = $(LIBICUTOOLUTIL) $(LIBICUUC) $(DEFAULT_LIBS) $(LIB_M)
30 DEPS = $(OBJECTS:.o=.d)
32 ## List of phony targets
33 .PHONY : all all-local install install-local clean clean-local \
34 distclean distclean-local dist dist-local check \
35 check-local build-data
40 ## List of standard targets
42 install: install-local
44 distclean : distclean-local
46 check: all check-local
48 all-local: $(TARGET) build-data $(MAN_FILES)
50 install-local: all-local
51 $(MKINSTALLDIRS) $(DESTDIR)$(sbindir)
52 $(INSTALL) $(TARGET) $(DESTDIR)$(sbindir)/$(TARGET)
57 test -z "$(CLEANFILES)" || $(RMV) $(CLEANFILES)
58 $(RMV) $(TARGET) $(OBJECTS)
60 distclean-local: clean-local
63 check-local: all-local
65 Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status
67 && CONFIG_FILES=$(subdir)/$@ CONFIG_HEADERS= $(SHELL) ./config.status
69 $(TARGET) : $(OBJECTS)
70 $(LINK.cc) $(OUTOPT)$@ $^ $(LIBS)
72 ifeq (,$(MAKECMDGOALS))
75 ifneq ($(patsubst %clean,,$(MAKECMDGOALS)),)