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. 6## Madhu Katragadda 7 8## Source directory information 9srcdir = @srcdir@ 10top_srcdir = @top_srcdir@ 11 12top_builddir = ../.. 13 14include $(top_builddir)/icudefs.mk 15 16## Build directory information 17subdir = tools/gentest 18 19## Extra files to remove for 'make clean' 20CLEANFILES = *~ $(DEPS) 21 22## Target information 23TARGET = gentest$(EXEEXT) 24 25CPPFLAGS += -I$(top_srcdir)/common -I$(srcdir)/../toolutil -I$(top_srcdir)/tools/ctestfw 26CPPFLAGS+= -I$(top_srcdir)/i18n 27LIBS = $(LIBCTESTFW) $(LIBICUTOOLUTIL) $(LIBICUI18N) $(LIBICUUC) $(DEFAULT_LIBS) $(LIB_M) 28 29OBJECTS = gentest.o genres32.o 30 31DEPS = $(OBJECTS:.o=.d) 32 33## List of phony targets 34.PHONY : all all-local install install-local clean clean-local \ 35distclean distclean-local dist dist-local check check-local 36 37## Clear suffix list 38.SUFFIXES : 39 40## List of standard targets 41all: all-local 42install: install-local 43clean: clean-local 44distclean : distclean-local 45dist: dist-local 46check: all check-local 47 48all-local: $(TARGET) 49 50install-local: all-local 51 52dist-local: 53 54clean-local: 55 test -z "$(CLEANFILES)" || $(RMV) $(CLEANFILES) 56 $(RMV) $(TARGET) $(OBJECTS) 57 58distclean-local: clean-local 59 $(RMV) Makefile 60 61check-local: all-local 62 63Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status 64 cd $(top_builddir) \ 65 && CONFIG_FILES=$(subdir)/$@ CONFIG_HEADERS= $(SHELL) ./config.status 66 67$(TARGET) : $(OBJECTS) 68 $(LINK.cc) $(OUTOPT)$@ $^ $(LIBS) 69 $(POST_BUILD_STEP) 70 71ifeq (,$(MAKECMDGOALS)) 72-include $(DEPS) 73else 74ifneq ($(patsubst %clean,,$(MAKECMDGOALS)),) 75-include $(DEPS) 76endif 77endif 78 79