10 lines
205 B
Makefile
10 lines
205 B
Makefile
CC=tcc
|
|
|
|
all: fps_counter rotate_cube
|
|
|
|
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 ./bin/rotate_cube
|