glfw-examples/Makefile

10 lines
205 B
Makefile
Raw Normal View History

2022-04-03 23:09:04 +03:00
CC=tcc
2015-09-12 20:58:39 +03:00
2015-09-20 23:47:22 +03:00
all: fps_counter rotate_cube
2015-09-12 20:58:39 +03:00
fps_counter:
2022-04-03 23:15:29 +03:00
$(CC) src/fps_counter/fps_counter.c -lglfw -lGL -o ./bin/fps_counter
2015-09-20 23:47:22 +03:00
rotate_cube:
2022-04-03 23:15:29 +03:00
$(CC) src/rotate_cube/rotate_cube.c -lglfw -lGL -o ./bin/rotate_cube