build/pymake/tests/line-continuations.mk

Wed, 31 Dec 2014 06:09:35 +0100

author
Michael Schloh von Bennewitz <michael@schloh.com>
date
Wed, 31 Dec 2014 06:09:35 +0100
changeset 0
6474c204b198
permissions
-rw-r--r--

Cloned upstream origin tor-browser at tor-browser-31.3.0esr-4.5-1-build1
revision ID fc1c9ff7c1b2defdbc039f12214767608f46423f for hacking purpose.

     1 VAR = val1 	 \
     2   	  val2  
     4 VAR2 = val1space\
     5 val2
     7 VAR3 = val3 \\\
     8 	cont3
    10 all: otarget test.target
    11 	test "$(VAR)" = "val1 val2  "
    12 	test "$(VAR2)" = "val1space val2"
    13 	test '$(VAR3)' = 'val3 \ cont3'
    14 	test "hello \
    15 	  world" = "hello   world"
    16 	test "hello" = \
    17 "hello"
    18 	@echo TEST-PASS
    20 otarget: ; test "hello\
    21 	world" = "helloworld"
    23 test.target: %.target: ; test "hello\
    24 	world" = "helloworld"

mercurial