1 ## Makefile.in for ICU - tools/gentest
3 ## Copyright (c) 1999-2004, International Business Machines Corporation and
4 ## others. All Rights Reserved.
7 ## Source directory information
9 top_srcdir = @top_srcdir@
13 include $(top_builddir)/icudefs.mk
15 ## Build directory information
16 subdir = tools/gentest
20 ## Extra files to remove for 'make clean'
21 CLEANFILES = *~ $(DEPS)
24 TARGET = gentest$(EXEEXT)
26 CPPFLAGS += -I$(top_builddir)/common -I$(top_srcdir)/common -I$(srcdir)/../toolutil
27 LIBS = $(LIBICUTOOLUTIL) $(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 \
41 ## List of standard targets
43 install: install-local
45 distclean : distclean-local
47 check: all check-local
51 install-local: all-local
56 test -z "$(CLEANFILES)" || $(RMV) $(CLEANFILES)
57 $(RMV) $(TARGET) $(OBJECTS)
59 distclean-local: clean-local
62 check-local: all-local
64 Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status
66 && CONFIG_FILES=$(subdir)/$@ CONFIG_HEADERS= $(SHELL) ./config.status
68 $(TARGET) : $(OBJECTS)
69 $(LINK.cc) $(OUTOPT)$@ $^ $(LIBS)
71 ifeq (,$(MAKECMDGOALS))
74 ifneq ($(patsubst %clean,,$(MAKECMDGOALS)),)