Warning: this is an htmlized version!
The original is here, and
the conversion rules are here.
# 2014oct02
# Thx to furq
# Info:  (find-es "lua5" "pkg-config")
# Tests: (find-angg "peek/peek-0.0.1-0.rockspec" "build")

CC      = gcc
PC      = pkg-config
LUA     = lua5.1
CFLAGS  = `$(PC) --cflags $(LUA)` -Wall -fPIC
LDFLAGS = `$(PC) --libs $(LUA)`

peek.so: peek.o
	$(CC) -shared $(LDFLAGS) -o $@ $^

clean:
	-rm peek.so