editorconfig fixes
This commit is contained in:
parent
c3c02fdedd
commit
065577f5e2
@ -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
7
.gitignore
vendored
@ -1,6 +1 @@
|
||||
# windows binary
|
||||
*.exe
|
||||
|
||||
# unix binary
|
||||
fps_counter
|
||||
rotate_cube
|
||||
bin/
|
||||
|
4
Makefile
4
Makefile
@ -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
|
||||
|
Loading…
Reference in New Issue
Block a user