2000-04-26 05:07:03 +00:00
|
|
|
## Makefile.in for ICU - test/testmap
|
2006-02-16 17:34:23 +00:00
|
|
|
## Copyright (c) 2003-2006, International Business Machines Corporation and
|
2000-04-26 05:07:03 +00:00
|
|
|
## others. All Rights Reserved.
|
|
|
|
|
2000-10-24 19:50:20 +00:00
|
|
|
## Source directory information
|
2000-04-26 05:07:03 +00:00
|
|
|
srcdir = @srcdir@
|
|
|
|
top_srcdir = @top_srcdir@
|
|
|
|
|
2000-10-26 19:28:33 +00:00
|
|
|
top_builddir = ../..
|
|
|
|
|
|
|
|
include $(top_builddir)/icudefs.mk
|
2000-04-26 05:07:03 +00:00
|
|
|
|
|
|
|
## Build directory information
|
|
|
|
subdir = test/testmap
|
|
|
|
|
|
|
|
## Extra files to remove for 'make clean'
|
2000-10-02 23:37:16 +00:00
|
|
|
CLEANFILES = *~ $(DEPS)
|
2000-04-26 05:07:03 +00:00
|
|
|
|
|
|
|
## Target information
|
2003-06-11 00:58:52 +00:00
|
|
|
TARGET = testmap$(EXEEXT)
|
2000-04-26 05:07:03 +00:00
|
|
|
|
2003-06-11 00:58:52 +00:00
|
|
|
#DEFS = @DEFS@
|
|
|
|
CPPFLAGS += -I$(top_builddir)/common -I$(top_srcdir)/common -I$(top_srcdir)/i18n
|
|
|
|
#CFLAGS += @CFLAGS@
|
|
|
|
#CXXFLAGS = @CXXFLAGS@
|
2000-04-26 05:07:03 +00:00
|
|
|
|
2003-06-11 00:58:52 +00:00
|
|
|
LIBS = $(LIBICUI18N) $(LIBICUUC) $(DEFAULT_LIBS) $(LIB_M)
|
2000-04-26 05:07:03 +00:00
|
|
|
|
|
|
|
OBJECTS = testmap.o
|
|
|
|
|
|
|
|
DEPS = $(OBJECTS:.o=.d)
|
|
|
|
|
|
|
|
## List of phony targets
|
|
|
|
.PHONY : all all-local install install-local clean clean-local \
|
|
|
|
distclean distclean-local dist dist-local check check-local
|
|
|
|
|
|
|
|
## Clear suffix list
|
|
|
|
.SUFFIXES :
|
|
|
|
|
|
|
|
## List of standard targets
|
2003-06-11 00:58:52 +00:00
|
|
|
Xall: all-local
|
2000-04-26 05:07:03 +00:00
|
|
|
install: install-local
|
|
|
|
clean: clean-local
|
|
|
|
distclean : distclean-local
|
|
|
|
dist: dist-local
|
2000-08-01 01:55:54 +00:00
|
|
|
check: all check-local
|
2000-04-26 05:07:03 +00:00
|
|
|
|
|
|
|
all-local: $(TARGET)
|
|
|
|
|
2000-10-12 03:13:46 +00:00
|
|
|
install-local:
|
2000-04-26 05:07:03 +00:00
|
|
|
|
|
|
|
dist-local:
|
|
|
|
|
|
|
|
clean-local:
|
2000-05-15 22:32:11 +00:00
|
|
|
test -z "$(CLEANFILES)" || $(RMV) $(CLEANFILES)
|
|
|
|
$(RMV) $(OBJECTS) $(TARGET)
|
2000-04-26 05:07:03 +00:00
|
|
|
|
|
|
|
distclean-local: clean-local
|
2000-10-02 23:37:16 +00:00
|
|
|
$(RMV) Makefile
|
2000-04-26 05:07:03 +00:00
|
|
|
|
2000-08-01 01:55:54 +00:00
|
|
|
check-local: all-local
|
2002-08-08 03:36:20 +00:00
|
|
|
$(INVOKE) ./$(TARGET)
|
2000-04-26 05:07:03 +00:00
|
|
|
|
|
|
|
Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status
|
|
|
|
cd $(top_builddir) \
|
|
|
|
&& CONFIG_FILES=$(subdir)/$@ CONFIG_HEADERS= $(SHELL) ./config.status
|
|
|
|
|
|
|
|
$(TARGET) : $(OBJECTS)
|
2003-06-11 00:58:52 +00:00
|
|
|
$(LINK.cc) $(OUTOPT)$@ $^ $(LIBS)
|
2000-04-26 05:07:03 +00:00
|
|
|
|
2003-06-11 00:58:52 +00:00
|
|
|
ifeq (,$(MAKECMDGOALS))
|
|
|
|
-include $(DEPS)
|
|
|
|
else
|
2002-02-06 02:08:02 +00:00
|
|
|
ifneq ($(patsubst %clean,,$(MAKECMDGOALS)),)
|
|
|
|
ifneq ($(patsubst %install,,$(MAKECMDGOALS)),)
|
2000-04-26 05:07:03 +00:00
|
|
|
-include $(DEPS)
|
|
|
|
endif
|
2002-02-06 02:08:02 +00:00
|
|
|
endif
|
2003-06-11 00:58:52 +00:00
|
|
|
endif
|