Skip to content

Instantly share code, notes, and snippets.

@yasuharu519
Created April 4, 2015 15:15
Show Gist options
  • Save yasuharu519/21101a8747588df88acd to your computer and use it in GitHub Desktop.
Save yasuharu519/21101a8747588df88acd to your computer and use it in GitHub Desktop.
GLFWプログラムのMakefile
CXX = clang++
CFLAGS = -I/usr/local/include
LDFLAGS = -framework OpenGL -L/usr/local/lib -lglfw
a.out: sample.cpp
$(CXX) $(CFLAGS) sample.cpp $(LDFLAGS)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment