]> rtime.felk.cvut.cz Git - omk.git/blob - tests/subdirs_first.files
Update wvtool
[omk.git] / tests / subdirs_first.files
1 mkdir 'subdir-forced'
2 cat > 'subdir-forced/Makefile.omk' <<EOF
3 default-config-pass-local: mycheck
4
5 mycheck:
6         echo "In FORCED-SUBDIR directory"
7 EOF
8 cat > 'order-correct.txt' <<EOF
9 In SUBDIR directory
10 In TOP directory
11 EOF
12 cat > 'Makefile.omk' <<EOF
13 SUBDIRS=subdir
14
15 default-config-pass-local: mycheck
16
17 mycheck:
18         echo "In TOP directory"
19 EOF
20 cat > 'order-correct-forced.txt' <<EOF
21 In FORCED-SUBDIR directory
22 In TOP directory
23 EOF
24 mkdir 'subdir'
25 cat > 'subdir/Makefile.omk' <<EOF
26 default-config-pass-local: mycheck
27
28 mycheck:
29         echo "In SUBDIR directory"
30 EOF