1 ## Copyright (C) 2016 and later: Unicode, Inc. and others.
2 ## License & terms of use: http://www.unicode.org/copyright.html#License
4 ## Makefile.in for ICU - samples/cal
5 ## Copyright (c) 1999-2011, International Business Machines Corporation and
6 ## others. All Rights Reserved.
8 ## Source directory information
10 top_srcdir = @top_srcdir@
12 ## Install directory information
15 include $(top_builddir)/icudefs.mk
17 ## Build directory information
20 ## Extra files to remove for 'make clean'
21 CLEANFILES = *~ $(DEPS)
24 TARGET = icucal$(EXEEXT)
26 CPPFLAGS += -I$(top_srcdir)/common -I$(top_srcdir)/i18n
27 LIBS = $(LIBICUI18N) $(LIBICUUC) $(DEFAULT_LIBS) $(LIB_M)
29 OBJECTS = uprint.o cal.o
31 DEPS = $(OBJECTS:.o=.d)
33 ## List of phony targets
34 .PHONY : all all-local install install-local clean clean-local \
35 distclean distclean-local dist dist-local check check-local
40 ## List of standard targets
42 install: install-local
44 distclean : distclean-local
46 check: all check-local
50 install-local: all-local
55 test -z "$(CLEANFILES)" || $(RMV) $(CLEANFILES)
56 $(RMV) $(OBJECTS) $(TARGET)
58 distclean-local: clean-local
62 -$(INVOKE) ./$(TARGET)
64 Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status
66 && CONFIG_FILES=$(subdir)/$@ CONFIG_HEADERS= $(SHELL) ./config.status
68 $(TARGET) : $(OBJECTS)
69 $(LINK.cc) $(OUTOPT)$@ $^ $(LIBS)
72 ifeq (,$(MAKECMDGOALS))
75 ifneq ($(patsubst %clean,,$(MAKECMDGOALS)),)