Wed, 31 Dec 2014 07:22:50 +0100
Correct previous dual key logic pending first delivery installment.
michael@0 | 1 | ## Makefile.in for ICU - samples/date |
michael@0 | 2 | ## Copyright (c) 1999-2012, International Business Machines Corporation and |
michael@0 | 3 | ## others. All Rights Reserved. |
michael@0 | 4 | |
michael@0 | 5 | ## Source directory information |
michael@0 | 6 | |
michael@0 | 7 | srcdir=@srcdir@ |
michael@0 | 8 | top_srcdir=@top_srcdir@ |
michael@0 | 9 | |
michael@0 | 10 | top_builddir = ../.. |
michael@0 | 11 | |
michael@0 | 12 | include $(top_builddir)/icudefs.mk |
michael@0 | 13 | |
michael@0 | 14 | ## Build directory information |
michael@0 | 15 | subdir = samples/date |
michael@0 | 16 | |
michael@0 | 17 | ## Extra files to remove for 'make clean' |
michael@0 | 18 | CLEANFILES = *~ $(DEPS) |
michael@0 | 19 | |
michael@0 | 20 | ## Target information |
michael@0 | 21 | TARGET = icudate$(EXEEXT) |
michael@0 | 22 | |
michael@0 | 23 | CPPFLAGS += -I$(top_srcdir)/common -I$(top_srcdir)/i18n |
michael@0 | 24 | LIBS = $(LIBICUI18N) $(LIBICUUC) $(DEFAULT_LIBS) $(LIB_M) |
michael@0 | 25 | |
michael@0 | 26 | OBJECTS = uprint.o date.o |
michael@0 | 27 | |
michael@0 | 28 | DEPS = $(OBJECTS:.o=.d) |
michael@0 | 29 | |
michael@0 | 30 | ## List of phony targets |
michael@0 | 31 | .PHONY : all all-local install install-local clean clean-local \ |
michael@0 | 32 | distclean distclean-local dist dist-local check check-local |
michael@0 | 33 | |
michael@0 | 34 | ## Clear suffix list |
michael@0 | 35 | .SUFFIXES : |
michael@0 | 36 | |
michael@0 | 37 | ## List of standard targets |
michael@0 | 38 | all: all-local |
michael@0 | 39 | install: install-local |
michael@0 | 40 | clean: clean-local |
michael@0 | 41 | distclean : distclean-local |
michael@0 | 42 | dist: dist-local |
michael@0 | 43 | check: all check-local |
michael@0 | 44 | |
michael@0 | 45 | all-local: $(TARGET) |
michael@0 | 46 | |
michael@0 | 47 | install-local: all-local |
michael@0 | 48 | |
michael@0 | 49 | dist-local: |
michael@0 | 50 | |
michael@0 | 51 | clean-local: |
michael@0 | 52 | test -z "$(CLEANFILES)" || $(RMV) $(CLEANFILES) |
michael@0 | 53 | $(RMV) $(OBJECTS) $(TARGET) |
michael@0 | 54 | |
michael@0 | 55 | distclean-local: clean-local |
michael@0 | 56 | $(RMV) Makefile |
michael@0 | 57 | |
michael@0 | 58 | check-local: |
michael@0 | 59 | -$(INVOKE) ./$(TARGET) $(ICUDATE_OPTS) |
michael@0 | 60 | |
michael@0 | 61 | Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status |
michael@0 | 62 | cd $(top_builddir) \ |
michael@0 | 63 | && CONFIG_FILES=$(subdir)/$@ CONFIG_HEADERS= $(SHELL) ./config.status |
michael@0 | 64 | |
michael@0 | 65 | $(TARGET) : $(OBJECTS) |
michael@0 | 66 | $(LINK.cc) $(OUTOPT)$@ $^ $(LIBS) |
michael@0 | 67 | $(POST_BUILD_STEP) |
michael@0 | 68 | |
michael@0 | 69 | ifeq (,$(MAKECMDGOALS)) |
michael@0 | 70 | -include $(DEPS) |
michael@0 | 71 | else |
michael@0 | 72 | ifneq ($(patsubst %clean,,$(MAKECMDGOALS)),) |
michael@0 | 73 | -include $(DEPS) |
michael@0 | 74 | endif |
michael@0 | 75 | endif |