diff options
author | Marvin Borner | 2020-08-15 17:42:36 +0200 |
---|---|---|
committer | Marvin Borner | 2020-08-15 17:42:36 +0200 |
commit | 9f16b032d38613ca95e321e1d1e652c43129c68b (patch) | |
tree | 33f71a84f60b496ed31a128ec542c5341c754b0d /run | |
parent | 32b8722128dfb4ca9e814940a23c2b22a283bb12 (diff) |
Added libgui
Diffstat (limited to 'run')
-rwxr-xr-x | run | 7 |
1 files changed, 4 insertions, 3 deletions
@@ -125,12 +125,13 @@ ${data}" } make_sync() { - ctags -R --exclude=.git --exclude=build --exclude=iso --exclude=cross . + ctags -R --exclude=.git --exclude=build --exclude=disk --exclude=cross --exclude=ext2util . rm -f compile_commands.json output=$(make --always-make --dry-run) - echo "$output" | make_append_commands libc libk lib - echo "$output" | make_append_commands libk kernel kernel + echo "$output" | make_append_commands libc libk libc + echo "$output" | make_append_commands libk libgui libgui + echo "$output" | make_append_commands libgui kernel kernel echo "$output" | make_append_commands kernel apps apps tr <compile_commands.json '\n' '\r' | sed -e 's/\r]\r\[/,/g' | tr '\r' '\n' >tmp mv tmp compile_commands.json |