File: special_chars_unix.test

package info (click to toggle)
makepp 2.0.98.5-2.1
  • links: PTS
  • area: main
  • in suites: bookworm, bullseye
  • size: 2,744 kB
  • sloc: perl: 15,893; makefile: 38; javascript: 25; sh: 1
file content (34 lines) | stat: -rw-r--r-- 680 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
###	SPAR <http://www.cpan.org/scripts/>
###	20	644	1067451879	965515310	Makeppfile
#
# A test of makepp's handling of files with special characters in them.
#

.PHONY: all

all: '%\' "a file with spaces" "a:b"

"%\\" : "a;b"
	&echo -E '$@' -o '$@'
	&cat '$<' -o>>'$@'

"a;b":
	&echo "$@" -o '$@'

"a file with spaces":
	&echo "$@" -o '$@'

"a:b":
	&echo "$@" -o "$@"
###	D	755	1067451879	965515332	answers
###	2	644	1067451879	965514355	answers/%\
%\
a;b
###	1	644	1067451879	965515317	answers/a:b
a:b
###	1	644	1067451879	965514355	answers/a;b
a;b
###	1	644	1067451879	1190053938	answers/n_files
4 1 0
###	1	644	1067451879	965514355	answers/a file with spaces
a file with spaces