1 ## Copyright (C) 2016 and later: Unicode, Inc. and others.
2 ## License & terms of use: http://www.unicode.org/copyright.html
3 ## Makefile.in for ICU - extra/scrptrun
4 ## Copyright (c) 2001-2011, International Business Machines Corporation and
5 ## others. All Rights Reserved.
7 ## Source directory information
9 top_srcdir = @top_srcdir@
13 include $(top_builddir)/icudefs.mk
15 ## Platform-specific setup
16 include @platform_make_fragment@
18 ## Build directory information
19 subdir = extra/scrptrun
21 ## Extra files to remove for 'make clean'
22 CLEANFILES = *~ $(DEPS)
28 CPPFLAGS = @CPPFLAGS@ -I$(top_srcdir)/common -I$(top_srcdir)
31 ENABLE_RPATH = @ENABLE_RPATH@
32 ifeq ($(ENABLE_RPATH),YES)
33 RPATHLDFLAGS = $(LD_RPATH)$(LD_RPATH_PRE)$(libdir)
35 LDFLAGS = @LDFLAGS@ $(RPATHLDFLAGS)
36 LIBS = $(LIBICUUC) @LIBS@ @LIB_M@
38 OBJECTS = scrptrun.o srtest.o
40 DEPS = $(OBJECTS:.o=.d)
42 ## List of phony targets
43 .PHONY : all all-local install install-local clean clean-local \
44 distclean distclean-local dist dist-local check check-local
49 ## List of standard targets
51 install: install-local
53 distclean : distclean-local
55 check: all check-local
64 test -z "$(CLEANFILES)" || $(RMV) $(CLEANFILES)
65 $(RMV) $(OBJECTS) $(TARGET)
67 distclean-local: clean-local
70 check-local: all-local
72 Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status
74 && CONFIG_FILES=$(subdir)/$@ CONFIG_HEADERS= $(SHELL) ./config.status
76 $(TARGET) : $(OBJECTS)
77 $(LINK.cc) -o $@ $^ $(LIBS)
81 ICU_DATA=$${ICU_DATA:-$(top_builddir)/data/} TZ=PST8PDT $(INVOKE) $(INVOCATION)
83 ifeq (,$(MAKECMDGOALS))
86 ifneq ($(patsubst %clean,,$(MAKECMDGOALS)),)