intl/icu/source/extra/Makefile.in

Sat, 03 Jan 2015 20:18:00 +0100

author
Michael Schloh von Bennewitz <michael@schloh.com>
date
Sat, 03 Jan 2015 20:18:00 +0100
branch
TOR_BUG_3246
changeset 7
129ffea94266
permissions
-rw-r--r--

Conditionally enable double key logic according to:
private browsing mode or privacy.thirdparty.isolate preference and
implement in GetCookieStringCommon and FindCookie where it counts...
With some reservations of how to convince FindCookie users to test
condition and pass a nullptr when disabling double key logic.

michael@0 1 #******************************************************************************
michael@0 2 #
michael@0 3 # Copyright (C) 1999-2011, International Business Machines
michael@0 4 # Corporation and others. All Rights Reserved.
michael@0 5 #
michael@0 6 #******************************************************************************
michael@0 7 ## Makefile.in for ICU extras
michael@0 8 ## Stephen F. Booth
michael@0 9
michael@0 10 ## Install directory information
michael@0 11 srcdir = @srcdir@
michael@0 12 top_srcdir = @top_srcdir@
michael@0 13
michael@0 14 top_builddir = ..
michael@0 15
michael@0 16 include $(top_builddir)/icudefs.mk
michael@0 17
michael@0 18 ## Build directory information
michael@0 19 subdir = extra
michael@0 20
michael@0 21 ## Files to remove for 'make clean'
michael@0 22 CLEANFILES = *~
michael@0 23
michael@0 24 SUBDIRS = uconv
michael@0 25
michael@0 26 ## List of phony targets
michael@0 27 .PHONY : all all-local all-recursive install install-local \
michael@0 28 install-recursive clean clean-local clean-recursive distclean \
michael@0 29 distclean-local distclean-recursive dist dist-recursive dist-local \
michael@0 30 check check-recursive check-local check-exhaustive
michael@0 31
michael@0 32 ## Clear suffix list
michael@0 33 .SUFFIXES :
michael@0 34
michael@0 35 ## List of standard targets
michael@0 36 all: all-recursive all-local
michael@0 37 install: install-recursive install-local
michael@0 38 clean: clean-recursive clean-local
michael@0 39 distclean : distclean-recursive distclean-local
michael@0 40 dist: dist-recursive dist-local
michael@0 41 check: all check-recursive check-local
michael@0 42
michael@0 43 check-exhaustive: check
michael@0 44
michael@0 45 ## Recursive targets
michael@0 46 all-recursive install-recursive clean-recursive distclean-recursive dist-recursive check-recursive:
michael@0 47 @dot_seen=no; \
michael@0 48 target=`echo $@ | sed s/-recursive//`; \
michael@0 49 list='$(SUBDIRS)'; for subdir in $$list; do \
michael@0 50 echo "$(MAKE)[$(MAKELEVEL)]: Making \`$$target' in \`$$subdir'"; \
michael@0 51 if test "$$subdir" = "."; then \
michael@0 52 dot_seen=yes; \
michael@0 53 local_target="$$target-local"; \
michael@0 54 else \
michael@0 55 local_target="$$target"; \
michael@0 56 fi; \
michael@0 57 (cd $$subdir && $(MAKE) $$local_target) || exit; \
michael@0 58 done; \
michael@0 59 if test "$$dot_seen" = "no"; then \
michael@0 60 $(MAKE) "$$target-local" || exit; \
michael@0 61 fi
michael@0 62
michael@0 63 all-local:
michael@0 64
michael@0 65 install-local:
michael@0 66
michael@0 67 dist-local:
michael@0 68
michael@0 69 clean-local:
michael@0 70 test -z "$(CLEANFILES)" || $(RMV) $(CLEANFILES)
michael@0 71
michael@0 72 check-local:
michael@0 73
michael@0 74 distclean-local: clean-local
michael@0 75 $(RMV) Makefile
michael@0 76
michael@0 77 Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status
michael@0 78 cd $(top_builddir) \
michael@0 79 && CONFIG_FILES=$(subdir)/$@ CONFIG_HEADERS= $(SHELL) ./config.status

mercurial