Wed, 31 Dec 2014 06:09:35 +0100
Cloned upstream origin tor-browser at tor-browser-31.3.0esr-4.5-1-build1
revision ID fc1c9ff7c1b2defdbc039f12214767608f46423f for hacking purpose.
1 ## Makefile.in for ICU - samples/cal
2 ## Copyright (c) 1999-2011, International Business Machines Corporation and
3 ## others. All Rights Reserved.
5 ## Source directory information
6 srcdir = @srcdir@
7 top_srcdir = @top_srcdir@
9 ## Install directory information
10 top_builddir = ../..
12 include $(top_builddir)/icudefs.mk
14 ## Build directory information
15 subdir = samples/cal
17 ## Extra files to remove for 'make clean'
18 CLEANFILES = *~ $(DEPS)
20 ## Target information
21 TARGET = icucal$(EXEEXT)
23 CPPFLAGS += -I$(top_srcdir)/common -I$(top_srcdir)/i18n
24 LIBS = $(LIBICUI18N) $(LIBICUUC) $(DEFAULT_LIBS) $(LIB_M)
26 OBJECTS = uprint.o cal.o
28 DEPS = $(OBJECTS:.o=.d)
30 ## List of phony targets
31 .PHONY : all all-local install install-local clean clean-local \
32 distclean distclean-local dist dist-local check check-local
34 ## Clear suffix list
35 .SUFFIXES :
37 ## List of standard targets
38 all: all-local
39 install: install-local
40 clean: clean-local
41 distclean : distclean-local
42 dist: dist-local
43 check: all check-local
45 all-local: $(TARGET)
47 install-local: all-local
49 dist-local:
51 clean-local:
52 test -z "$(CLEANFILES)" || $(RMV) $(CLEANFILES)
53 $(RMV) $(OBJECTS) $(TARGET)
55 distclean-local: clean-local
56 $(RMV) Makefile
58 check-local:
59 -$(INVOKE) ./$(TARGET)
61 Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status
62 cd $(top_builddir) \
63 && CONFIG_FILES=$(subdir)/$@ CONFIG_HEADERS= $(SHELL) ./config.status
65 $(TARGET) : $(OBJECTS)
66 $(LINK.cc) $(OUTOPT)$@ $^ $(LIBS)
67 $(POST_BUILD_STEP)
69 ifeq (,$(MAKECMDGOALS))
70 -include $(DEPS)
71 else
72 ifneq ($(patsubst %clean,,$(MAKECMDGOALS)),)
73 -include $(DEPS)
74 endif
75 endif