1 ## Makefile.in for ICU - tools/gentest
2 ## Copyright (C) 2016 and later: Unicode, Inc. and others.
3 ## License & terms of use: http://www.unicode.org/copyright.html
4 ## Copyright (c) 1999-2011, International Business Machines Corporation and
5 ## others. All Rights Reserved.
8 ## Source directory information
10 top_srcdir = @top_srcdir@
14 include $(top_builddir)/icudefs.mk
16 ## Build directory information
17 subdir = tools/gentest
19 ## Extra files to remove for 'make clean'
20 CLEANFILES = *~ $(DEPS)
23 TARGET = gentest$(EXEEXT)
25 CPPFLAGS += -I$(top_srcdir)/common -I$(srcdir)/../toolutil -I$(top_srcdir)/tools/ctestfw
26 CPPFLAGS+= -I$(top_srcdir)/i18n
27 LIBS = $(LIBCTESTFW) $(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)
71 ifeq (,$(MAKECMDGOALS))
74 ifneq ($(patsubst %clean,,$(MAKECMDGOALS)),)