diff options
author | roel0 <roel.postelmans@altran.com> | 2018-03-20 11:56:46 +0100 |
---|---|---|
committer | roel0 <roel.postelmans@altran.com> | 2018-03-20 11:56:46 +0100 |
commit | 3fb7efa2c6d249ccc5b69036dbeda690c7459515 (patch) | |
tree | 33393c06810204d57e558ed7cec68cb0902032ba /test/test_c_projects | |
parent | c47b5fd4b8f9b7c08774e631dae60ca51c23e7c9 (diff) | |
download | ale-3fb7efa2c6d249ccc5b69036dbeda690c7459515.zip |
Added some unit tests and fixed some linting errors for automatic makefile parsing in C #1167
Diffstat (limited to 'test/test_c_projects')
-rw-r--r-- | test/test_c_projects/makefile_project/Makefile | 3 | ||||
-rw-r--r-- | test/test_c_projects/makefile_project/subdir/file.c | 0 |
2 files changed, 3 insertions, 0 deletions
diff --git a/test/test_c_projects/makefile_project/Makefile b/test/test_c_projects/makefile_project/Makefile index e69de29b..8b49a94d 100644 --- a/test/test_c_projects/makefile_project/Makefile +++ b/test/test_c_projects/makefile_project/Makefile @@ -0,0 +1,3 @@ +file.o : subdir/file.c + cc -c subdir/file.c -Isubdir + diff --git a/test/test_c_projects/makefile_project/subdir/file.c b/test/test_c_projects/makefile_project/subdir/file.c new file mode 100644 index 00000000..e69de29b --- /dev/null +++ b/test/test_c_projects/makefile_project/subdir/file.c |