editorconfig fixes

This commit is contained in:
Alexander Popov 2022-04-03 23:15:29 +03:00
parent c3c02fdedd
commit 065577f5e2
Signed by: iiiypuk
GPG Key ID: 3F76816AEE08F908
5 changed files with 14 additions and 20 deletions

View File

@ -8,7 +8,6 @@ charset = utf-8
trim_trailing_whitespace = true
insert_final_newline = true
# C
[{*.c,*.h}]
indent_style = space
indent_size = 2

7
.gitignore vendored
View File

@ -1,6 +1 @@
# windows binary
*.exe
# unix binary
fps_counter
rotate_cube
bin/

View File

@ -3,7 +3,7 @@ CC=tcc
all: fps_counter rotate_cube
fps_counter:
$(CC) src/fps_counter/fps_counter.c -lglfw -lGL -o fps_counter
$(CC) src/fps_counter/fps_counter.c -lglfw -lGL -o ./bin/fps_counter
rotate_cube:
$(CC) src/rotate_cube/rotate_cube.c -lglfw -lGL -o rotate_cube
$(CC) src/rotate_cube/rotate_cube.c -lglfw -lGL -o ./bin/rotate_cube