1## Makefile.in for ICU - test/thaitest
2## Copyright (c) 2003-2011, International Business Machines Corporation and
3## others. All Rights Reserved.
4
5## Source directory information
6srcdir = @srcdir@
7top_srcdir = @top_srcdir@
8
9top_builddir = ../..
10
11include $(top_builddir)/icudefs.mk
12
13## Build directory information
14subdir = test/thaitest
15
16## Extra files to remove for 'make clean'
17CLEANFILES = *~ $(DEPS)
18
19## Target information
20TARGET = thaitest$(EXEEXT)
21
22DEFS = @DEFS@
23CPPFLAGS += -I$(top_srcdir)/common -I$(top_srcdir)/i18n 
24#CFLAGS += @CFLAGS@
25#CXXFLAGS = @CXXFLAGS@
26
27LIBS = $(LIBICUI18N) $(LIBICUUC) $(DEFAULT_LIBS) $(LIB_M)
28
29OBJECTS = thaitest.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:
51
52dist-local:
53
54clean-local:
55	test -z "$(CLEANFILES)" || $(RMV) $(CLEANFILES)
56	$(RMV) $(OBJECTS) $(TARGET)
57
58distclean-local: clean-local
59	$(RMV) Makefile
60
61check-local: all-local
62	$(INVOKE) ./$(TARGET)
63
64Makefile: $(srcdir)/Makefile.in  $(top_builddir)/config.status
65	cd $(top_builddir) \
66	 && CONFIG_FILES=$(subdir)/$@ CONFIG_HEADERS= $(SHELL) ./config.status
67
68$(TARGET) : $(OBJECTS)
69	$(LINK.cc) $(OUTOPT)$@ $^ $(LIBS)
70	$(POST_BUILD_STEP)
71
72ifeq (,$(MAKECMDGOALS))
73-include $(DEPS)
74else
75ifneq ($(patsubst %clean,,$(MAKECMDGOALS)),)
76ifneq ($(patsubst %install,,$(MAKECMDGOALS)),)
77-include $(DEPS)
78endif
79endif
80endif
81