1 ## Makefile.in for ICU - tools/gentest
2 ## Copyright (c) 1999-2008, 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 -I$(top_srcdir)/tools/ctestfw
27 CPPFLAGS+= -I$(top_srcdir)/i18n
28 LIBS = $(LIBCTESTFW) $(LIBICUTOOLUTIL) $(LIBICUI18N) $(LIBICUUC) $(DEFAULT_LIBS) $(LIB_M)
30 OBJECTS = gentest.o genres32.o
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 check-local
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)
72 ifeq (,$(MAKECMDGOALS))
75 ifneq ($(patsubst %clean,,$(MAKECMDGOALS)),)