glfw-examples/Makefile

10 lines
193 B
Makefile

CC=tcc
all: fps_counter rotate_cube
fps_counter:
$(CC) src/fps_counter/fps_counter.c -lglfw -lGL -o fps_counter
rotate_cube:
$(CC) src/rotate_cube/rotate_cube.c -lglfw -lGL -o rotate_cube