Skip to content

Instantly share code, notes, and snippets.

View thbonk's full-sized avatar

Thomas Bonk thbonk

View GitHub Profile
@jzrake
jzrake / Makefile
Created April 17, 2012 20:10
Wrapping C++ classes with Lua
LUAHOME = $(HOME)/Work/lunum/lua-5.2.0
CFLAGS = -Wall
default : luawrap
luawrap : luawrap.cpp
$(CXX) $(CFLAGS) -o $@ $^ -L$(LUAHOME)/lib -I$(LUAHOME)/include -llua
clean :