1 ## Makefile.in for ICU - tools/gentest
2 ## Copyright (c) 1999-2011, 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 CPPFLAGS += -I$(top_srcdir)/common -I$(srcdir)/../toolutil -I$(top_srcdir)/tools/ctestfw
24 CPPFLAGS+= -I$(top_srcdir)/i18n
25 LIBS = $(LIBCTESTFW) $(LIBICUTOOLUTIL) $(LIBICUI18N) $(LIBICUUC) $(DEFAULT_LIBS) $(LIB_M)
27 OBJECTS = gentest.o genres32.o
29 DEPS = $(OBJECTS:.o=.d)
31 ## List of phony targets
32 .PHONY : all all-local install install-local clean clean-local \
33 distclean distclean-local dist dist-local check check-local
38 ## List of standard targets
40 install: install-local
42 distclean : distclean-local
44 check: all check-local
48 install-local: all-local
53 test -z "$(CLEANFILES)" || $(RMV) $(CLEANFILES)
54 $(RMV) $(TARGET) $(OBJECTS)
56 distclean-local: clean-local
59 check-local: all-local
61 Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status
63 && CONFIG_FILES=$(subdir)/$@ CONFIG_HEADERS= $(SHELL) ./config.status
65 $(TARGET) : $(OBJECTS)
66 $(LINK.cc) $(OUTOPT)$@ $^ $(LIBS)
69 ifeq (,$(MAKECMDGOALS))
72 ifneq ($(patsubst %clean,,$(MAKECMDGOALS)),)