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
7 top_srcdir = @top_srcdir@
9 ## Install directory information
12 include $(top_builddir)/icudefs.mk
14 ## Build directory information
17 ## Extra files to remove for 'make clean'
18 CLEANFILES = *~ $(DEPS)
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
37 ## List of standard targets
39 install: install-local
41 distclean : distclean-local
43 check: all check-local
47 install-local: all-local
52 test -z "$(CLEANFILES)" || $(RMV) $(CLEANFILES)
53 $(RMV) $(OBJECTS) $(TARGET)
55 distclean-local: clean-local
59 -$(INVOKE) ./$(TARGET)
61 Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status
63 && CONFIG_FILES=$(subdir)/$@ CONFIG_HEADERS= $(SHELL) ./config.status
65 $(TARGET) : $(OBJECTS)
66 $(LINK.cc) $(OUTOPT)$@ $^ $(LIBS)
69 ifeq (,$(MAKECMDGOALS))
72 ifneq ($(patsubst %clean,,$(MAKECMDGOALS)),)