glfw-examples/Makefile

10 lines
165 B
Makefile
Raw Normal View History

2015-09-12 20:58:39 +03:00
CC=gcc
2015-09-20 23:47:22 +03:00
all: fps_counter rotate_cube
2015-09-12 20:58:39 +03:00
fps_counter:
$(CC) fps_counter.c -lglfw -lGL -o fps_counter
2015-09-20 23:47:22 +03:00
rotate_cube:
$(CC) rotate_cube.c -lglfw -lGL -o rotate_cube.exe