1 ## Makefile.in for ICU - test/testmap
2 ## Copyright (c) 2003, International Business Machines Corporation and
3 ## others. All Rights Reserved.
5 ## Source directory information
7 top_srcdir = @top_srcdir@
11 include $(top_builddir)/icudefs.mk
13 ## Build directory information
16 ## Extra files to remove for 'make clean'
17 CLEANFILES = *~ $(DEPS)
20 TARGET = testmap$(EXEEXT)
23 CPPFLAGS += -I$(top_builddir)/common -I$(top_srcdir)/common -I$(top_srcdir)/i18n
25 #CXXFLAGS = @CXXFLAGS@
27 LIBS = $(LIBICUI18N) $(LIBICUUC) $(DEFAULT_LIBS) $(LIB_M)
29 # Data packaging options are set at configure time with --with-data-packaging.
30 CPPFLAGS += @DATA_PACKAGING_CPPFLAGS@
32 #ifeq ($(PKGDATA_MODE),dll)
33 #CPPFLAGS += -DUDATA_MAP_DLL
34 #LIBICUDATA= -L$(top_srcdir)/../data -licudata
38 DEPS = $(OBJECTS:.o=.d)
40 ## List of phony targets
41 .PHONY : all all-local install install-local clean clean-local \
42 distclean distclean-local dist dist-local check check-local
47 ## List of standard targets
49 install: install-local
51 distclean : distclean-local
53 check: all check-local
62 test -z "$(CLEANFILES)" || $(RMV) $(CLEANFILES)
63 $(RMV) $(OBJECTS) $(TARGET)
65 distclean-local: clean-local
68 check-local: all-local
71 Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status
73 && CONFIG_FILES=$(subdir)/$@ CONFIG_HEADERS= $(SHELL) ./config.status
75 $(TARGET) : $(OBJECTS)
76 $(LINK.cc) $(OUTOPT)$@ $^ $(LIBS)
78 ifeq (,$(MAKECMDGOALS))
81 ifneq ($(patsubst %clean,,$(MAKECMDGOALS)),)
82 ifneq ($(patsubst %install,,$(MAKECMDGOALS)),)