summaryrefslogtreecommitdiff
path: root/Build/source/libs/icu/icu-src/source/test/perf/normperf/Makefile.in
diff options
context:
space:
mode:
Diffstat (limited to 'Build/source/libs/icu/icu-src/source/test/perf/normperf/Makefile.in')
-rw-r--r--Build/source/libs/icu/icu-src/source/test/perf/normperf/Makefile.in16
1 files changed, 12 insertions, 4 deletions
diff --git a/Build/source/libs/icu/icu-src/source/test/perf/normperf/Makefile.in b/Build/source/libs/icu/icu-src/source/test/perf/normperf/Makefile.in
index 1655c78cd66..bc63e822686 100644
--- a/Build/source/libs/icu/icu-src/source/test/perf/normperf/Makefile.in
+++ b/Build/source/libs/icu/icu-src/source/test/perf/normperf/Makefile.in
@@ -17,17 +17,20 @@ include $(top_builddir)/icudefs.mk
subdir = test/perf/normperf
## Extra files to remove for 'make clean'
-CLEANFILES = *~ $(DEPS)
+CLEANFILES = *~ $(DEPS) $(SIMPLE_DEPS)
## Target information
TARGET = normperf
+SIMPLE = simplenormperf
CPPFLAGS += -I$(top_srcdir)/common -I$(top_srcdir)/tools/toolutil -I$(top_srcdir)/tools/ctestfw
LIBS = $(LIBCTESTFW) $(LIBICUI18N) $(LIBICUUC) $(LIBICUTOOLUTIL) $(DEFAULT_LIBS) $(LIB_M)
OBJECTS = normperf.o
+SIMPLE_OBJ = simplenormperf.o
DEPS = $(OBJECTS:.o=.d)
+SIMPLE_DEPS = $(SIMPLE_OBJ:.o=.d)
## List of phony targets
.PHONY : all all-local install install-local clean clean-local \
@@ -44,7 +47,7 @@ distclean : distclean-local
dist: dist-local
check: all check-local
-all-local: $(TARGET)
+all-local: $(TARGET) $(SIMPLE)
install-local:
@@ -52,7 +55,7 @@ dist-local:
clean-local:
test -z "$(CLEANFILES)" || $(RMV) $(CLEANFILES)
- $(RMV) $(OBJECTS) $(TARGET)
+ $(RMV) $(OBJECTS) $(SIMPLE_OBJ) $(TARGET) $(SIMPLE)
distclean-local: clean-local
$(RMV) Makefile
@@ -67,16 +70,21 @@ $(TARGET) : $(OBJECTS)
$(LINK.cc) -o $@ $^ $(LIBS)
$(POST_BUILD_STEP)
+$(SIMPLE) : $(SIMPLE_OBJ)
+ $(LINK.cc) -o $@ $^ $(LIBS)
+ $(POST_BUILD_STEP)
+
invoke:
ICU_DATA=$${ICU_DATA:-$(top_builddir)/data/} TZ=PST8PDT $(INVOKE) $(INVOCATION)
ifeq (,$(MAKECMDGOALS))
-include $(DEPS)
+-include $(SIMPLE_DEPS)
else
ifneq ($(patsubst %clean,,$(MAKECMDGOALS)),)
ifneq ($(patsubst %install,,$(MAKECMDGOALS)),)
-include $(DEPS)
+-include $(SIMPLE_DEPS)
endif
endif
endif
-