1ac04d0bbe12b3ef54518635711412f178cb4d16Jean-Baptiste Queru## Makefile.in for ICU - test/testmap
28393335b955da7340c9f19b1b4b2d6c0c2c04be7Craig Cornelius## Copyright (c) 2003-2012, International Business Machines Corporation and
3ac04d0bbe12b3ef54518635711412f178cb4d16Jean-Baptiste Queru## others. All Rights Reserved.
4ac04d0bbe12b3ef54518635711412f178cb4d16Jean-Baptiste Queru
5ac04d0bbe12b3ef54518635711412f178cb4d16Jean-Baptiste Queru## Source directory information
6ac04d0bbe12b3ef54518635711412f178cb4d16Jean-Baptiste Querusrcdir = @srcdir@
7ac04d0bbe12b3ef54518635711412f178cb4d16Jean-Baptiste Querutop_srcdir = @top_srcdir@
8ac04d0bbe12b3ef54518635711412f178cb4d16Jean-Baptiste Queru
9ac04d0bbe12b3ef54518635711412f178cb4d16Jean-Baptiste Querutop_builddir = ../..
10ac04d0bbe12b3ef54518635711412f178cb4d16Jean-Baptiste Queru
11ac04d0bbe12b3ef54518635711412f178cb4d16Jean-Baptiste Queruinclude $(top_builddir)/icudefs.mk
12ac04d0bbe12b3ef54518635711412f178cb4d16Jean-Baptiste Queru
13ac04d0bbe12b3ef54518635711412f178cb4d16Jean-Baptiste Queru## Build directory information
14ac04d0bbe12b3ef54518635711412f178cb4d16Jean-Baptiste Querusubdir = test/testmap
15ac04d0bbe12b3ef54518635711412f178cb4d16Jean-Baptiste Queru
16ac04d0bbe12b3ef54518635711412f178cb4d16Jean-Baptiste Queru## Extra files to remove for 'make clean'
17ac04d0bbe12b3ef54518635711412f178cb4d16Jean-Baptiste QueruCLEANFILES = *~ $(DEPS)
18ac04d0bbe12b3ef54518635711412f178cb4d16Jean-Baptiste Queru
19ac04d0bbe12b3ef54518635711412f178cb4d16Jean-Baptiste Queru## Target information
20ac04d0bbe12b3ef54518635711412f178cb4d16Jean-Baptiste QueruTARGET = testmap$(EXEEXT)
21ac04d0bbe12b3ef54518635711412f178cb4d16Jean-Baptiste Queru
22ac04d0bbe12b3ef54518635711412f178cb4d16Jean-Baptiste Queru#DEFS = @DEFS@
238393335b955da7340c9f19b1b4b2d6c0c2c04be7Craig CorneliusCPPFLAGS += -I$(top_srcdir)/common -I$(top_srcdir)/i18n  $(SHAREDLIBCPPFLAGS) $(SHAREDLIBCFLAGS)
24ac04d0bbe12b3ef54518635711412f178cb4d16Jean-Baptiste Queru#CFLAGS += @CFLAGS@
25ac04d0bbe12b3ef54518635711412f178cb4d16Jean-Baptiste Queru#CXXFLAGS = @CXXFLAGS@
26ac04d0bbe12b3ef54518635711412f178cb4d16Jean-Baptiste Queru
27ac04d0bbe12b3ef54518635711412f178cb4d16Jean-Baptiste QueruLIBS = $(LIBICUI18N) $(LIBICUUC) $(DEFAULT_LIBS) $(LIB_M)
28ac04d0bbe12b3ef54518635711412f178cb4d16Jean-Baptiste Queru
29ac04d0bbe12b3ef54518635711412f178cb4d16Jean-Baptiste QueruOBJECTS = testmap.o
30ac04d0bbe12b3ef54518635711412f178cb4d16Jean-Baptiste Queru
31ac04d0bbe12b3ef54518635711412f178cb4d16Jean-Baptiste QueruDEPS = $(OBJECTS:.o=.d)
32ac04d0bbe12b3ef54518635711412f178cb4d16Jean-Baptiste Queru
33ac04d0bbe12b3ef54518635711412f178cb4d16Jean-Baptiste Queru## List of phony targets
34ac04d0bbe12b3ef54518635711412f178cb4d16Jean-Baptiste Queru.PHONY : all all-local install install-local clean clean-local	\
35ac04d0bbe12b3ef54518635711412f178cb4d16Jean-Baptiste Querudistclean distclean-local dist dist-local check check-local
36ac04d0bbe12b3ef54518635711412f178cb4d16Jean-Baptiste Queru
37ac04d0bbe12b3ef54518635711412f178cb4d16Jean-Baptiste Queru## Clear suffix list
38ac04d0bbe12b3ef54518635711412f178cb4d16Jean-Baptiste Queru.SUFFIXES :
39ac04d0bbe12b3ef54518635711412f178cb4d16Jean-Baptiste Queru
40ac04d0bbe12b3ef54518635711412f178cb4d16Jean-Baptiste Queru## List of standard targets
41ac04d0bbe12b3ef54518635711412f178cb4d16Jean-Baptiste QueruXall: all-local
42ac04d0bbe12b3ef54518635711412f178cb4d16Jean-Baptiste Queruinstall: install-local
43ac04d0bbe12b3ef54518635711412f178cb4d16Jean-Baptiste Queruclean: clean-local
44ac04d0bbe12b3ef54518635711412f178cb4d16Jean-Baptiste Querudistclean : distclean-local
45ac04d0bbe12b3ef54518635711412f178cb4d16Jean-Baptiste Querudist: dist-local
46ac04d0bbe12b3ef54518635711412f178cb4d16Jean-Baptiste Querucheck: all check-local
47ac04d0bbe12b3ef54518635711412f178cb4d16Jean-Baptiste Queru
48ac04d0bbe12b3ef54518635711412f178cb4d16Jean-Baptiste Queruall-local: $(TARGET)
49ac04d0bbe12b3ef54518635711412f178cb4d16Jean-Baptiste Queru
50ac04d0bbe12b3ef54518635711412f178cb4d16Jean-Baptiste Queruinstall-local:
51ac04d0bbe12b3ef54518635711412f178cb4d16Jean-Baptiste Queru
52ac04d0bbe12b3ef54518635711412f178cb4d16Jean-Baptiste Querudist-local:
53ac04d0bbe12b3ef54518635711412f178cb4d16Jean-Baptiste Queru
54ac04d0bbe12b3ef54518635711412f178cb4d16Jean-Baptiste Queruclean-local:
55ac04d0bbe12b3ef54518635711412f178cb4d16Jean-Baptiste Queru	test -z "$(CLEANFILES)" || $(RMV) $(CLEANFILES)
56ac04d0bbe12b3ef54518635711412f178cb4d16Jean-Baptiste Queru	$(RMV) $(OBJECTS) $(TARGET)
57ac04d0bbe12b3ef54518635711412f178cb4d16Jean-Baptiste Queru
58ac04d0bbe12b3ef54518635711412f178cb4d16Jean-Baptiste Querudistclean-local: clean-local
59ac04d0bbe12b3ef54518635711412f178cb4d16Jean-Baptiste Queru	$(RMV) Makefile
60ac04d0bbe12b3ef54518635711412f178cb4d16Jean-Baptiste Queru
61ac04d0bbe12b3ef54518635711412f178cb4d16Jean-Baptiste Querucheck-local: all-local
62ac04d0bbe12b3ef54518635711412f178cb4d16Jean-Baptiste Queru	$(INVOKE) ./$(TARGET)
63ac04d0bbe12b3ef54518635711412f178cb4d16Jean-Baptiste Queru
64ac04d0bbe12b3ef54518635711412f178cb4d16Jean-Baptiste QueruMakefile: $(srcdir)/Makefile.in  $(top_builddir)/config.status
65ac04d0bbe12b3ef54518635711412f178cb4d16Jean-Baptiste Queru	cd $(top_builddir) \
66ac04d0bbe12b3ef54518635711412f178cb4d16Jean-Baptiste Queru	 && CONFIG_FILES=$(subdir)/$@ CONFIG_HEADERS= $(SHELL) ./config.status
67ac04d0bbe12b3ef54518635711412f178cb4d16Jean-Baptiste Queru
68ac04d0bbe12b3ef54518635711412f178cb4d16Jean-Baptiste Queru$(TARGET) : $(OBJECTS)
698393335b955da7340c9f19b1b4b2d6c0c2c04be7Craig Cornelius	$(LINK.cc) $(OUTOPT)$@ $^ $(LIBS) $(CFLAGS) $(SHAREDLIBCFLAGS)
70ac04d0bbe12b3ef54518635711412f178cb4d16Jean-Baptiste Queru	$(POST_BUILD_STEP)
71ac04d0bbe12b3ef54518635711412f178cb4d16Jean-Baptiste Queru
72ac04d0bbe12b3ef54518635711412f178cb4d16Jean-Baptiste Queruifeq (,$(MAKECMDGOALS))
73ac04d0bbe12b3ef54518635711412f178cb4d16Jean-Baptiste Queru-include $(DEPS)
74ac04d0bbe12b3ef54518635711412f178cb4d16Jean-Baptiste Queruelse
75ac04d0bbe12b3ef54518635711412f178cb4d16Jean-Baptiste Queruifneq ($(patsubst %clean,,$(MAKECMDGOALS)),)
76ac04d0bbe12b3ef54518635711412f178cb4d16Jean-Baptiste Queruifneq ($(patsubst %install,,$(MAKECMDGOALS)),)
77ac04d0bbe12b3ef54518635711412f178cb4d16Jean-Baptiste Queru-include $(DEPS)
78ac04d0bbe12b3ef54518635711412f178cb4d16Jean-Baptiste Queruendif
79ac04d0bbe12b3ef54518635711412f178cb4d16Jean-Baptiste Queruendif
80ac04d0bbe12b3ef54518635711412f178cb4d16Jean-Baptiste Queruendif
81