File: Makefile

package info (click to toggle)
luabind 0.9.1%2Bdfsg-9
  • links: PTS, VCS
  • area: main
  • in suites: jessie, jessie-kfreebsd
  • size: 1,764 kB
  • ctags: 2,783
  • sloc: cpp: 13,791; makefile: 122; sh: 24; ansic: 11
file content (13 lines) | stat: -rw-r--r-- 310 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
all: glutbind_test

# if using fink on darwin
# you need these additional flags
CPPFLAGS = -I/sw/include -L/sw/lib

glutbind_test: glut_bind.cpp
	$(CXX) glut_bind.cpp -o glut_bind $(CPPFLAGS) \
	-I/usr/include/lua5.2 -I/usr/include/boost \
	-llua5.2 -lluabind -lGL -lGLU -lglut

clean:
	rm -f glut_bind *.o *~