]> rtime.felk.cvut.cz Git - omk.git/blob - tests/sources_list.files
Delete unused variables
[omk.git] / tests / sources_list.files
1 cat > 'Makefile.omk' <<EOF
2 SUBDIRS = dir
3
4 include_HEADERS = a.h
5 renamed_include_HEADERS = b.h->bb.h
6
7 lib_LIBRARIES = l
8 l_SOURCES = c.c
9 EOF
10 mkdir 'dir'
11 cat > 'dir/Makefile.omk' <<EOF
12 include_HEADERS = d.h
13 renamed_include_HEADERS = e.h->ee.h
14
15 lib_LIBRARIES = l
16 l_SOURCES = f.c
17 EOF
18 cat > 'sources.list.correct' <<EOF
19 # Automatically generated list of files in '' that are used during OMK compilation
20 a.h
21 b.h
22 c.c
23 dir/d.h
24 dir/e.h
25 dir/f.c
26 EOF