1 ## Makefile.in for ICU - samples/cal
2 ## Copyright (c) 1999-2001, 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)
25 CPPFLAGS += -I$(top_builddir)/common -I$(top_srcdir)/common -I$(top_srcdir)/i18n
26 LIBS = $(LIBICUI18N) $(LIBICUUC) @LIBS@ @LIB_M@
28 OBJECTS = uprint.o cal.o
30 DEPS = $(OBJECTS:.o=.d)
32 ## List of phony targets
33 .PHONY : all all-local install install-local clean clean-local \
34 distclean distclean-local dist dist-local check check-local
39 ## List of standard targets
41 install: install-local
43 distclean : distclean-local
45 check: all check-local
49 install-local: all-local
54 test -z "$(CLEANFILES)" || $(RMV) $(CLEANFILES)
55 $(RMV) $(OBJECTS) $(TARGET)
57 distclean-local: clean-local
61 -$(INVOKE) ./$(TARGET)
63 Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status
65 && CONFIG_FILES=$(subdir)/$@ CONFIG_HEADERS= $(SHELL) ./config.status
67 $(TARGET) : $(OBJECTS)
68 $(LINK) -o $@ $^ $(LIBS)
70 ifeq (,$(MAKECMDGOALS))
73 ifneq ($(patsubst %clean,,$(MAKECMDGOALS)),)