1 ## Makefile.in for ICU - tools/gentest
2 ## Copyright (c) 1999-2005, 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
14 ## Build directory information
15 subdir = tools/gentest
17 ## Extra files to remove for 'make clean'
18 CLEANFILES = *~ $(DEPS)
21 TARGET = gentest$(EXEEXT)
23 ifneq ($(top_builddir),$(top_srcdir))
24 CPPFLAGS += -I$(top_builddir)/common
26 CPPFLAGS += -I$(top_srcdir)/common -I$(srcdir)/../toolutil
27 LIBS = $(LIBICUTOOLUTIL) $(LIBICUI18N) $(LIBICUUC) $(DEFAULT_LIBS) $(LIB_M)
29 OBJECTS = gentest.o genres32.o
31 DEPS = $(OBJECTS:.o=.d)
33 ## List of phony targets
34 .PHONY : all all-local install install-local clean clean-local \
35 distclean distclean-local dist dist-local check check-local
40 ## List of standard targets
42 install: install-local
44 distclean : distclean-local
46 check: all check-local
50 install-local: all-local
55 test -z "$(CLEANFILES)" || $(RMV) $(CLEANFILES)
56 $(RMV) $(TARGET) $(OBJECTS)
58 distclean-local: clean-local
61 check-local: all-local
63 Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status
65 && CONFIG_FILES=$(subdir)/$@ CONFIG_HEADERS= $(SHELL) ./config.status
67 $(TARGET) : $(OBJECTS)
68 $(LINK.cc) $(OUTOPT)$@ $^ $(LIBS)
70 ifeq (,$(MAKECMDGOALS))
73 ifneq ($(patsubst %clean,,$(MAKECMDGOALS)),)