source: trunk/src/kmk/testcase/inline.kMk@ 150

Last change on this file since 150 was 42, checked in by bird, 22 years ago

more inline.

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 409 bytes
Line 
1all: inlinefile.keep inlinefile.nokeep
2
3
4inlinefile.keep:
5 echo Creating <<$@
6line 1
7.if 1
8line 2
9.else
10this line is not included in the output.
11.endif
12line 3
13# comment like line, but it will be included.
14<<KEEP
15 echo done
16
17.if 1
18BadLine
19.else
20Another Badline
21.endif
22
23
24inlinefile.nokeep:
25 echo Creating <<$@
26# comment like line, but it will be included.
27line 1
28line 2
29line 3
30<<NOKEEP
31 echo done
32
33
34
35
Note: See TracBrowser for help on using the repository browser.