Skip to content

Instantly share code, notes, and snippets.

View phi-gamma's full-sized avatar
💤
Does nothing unless polled.

Philipp Gesang phi-gamma

💤
Does nothing unless polled.
View GitHub Profile
@phi-gamma
phi-gamma / Makefile
Last active July 7, 2017 18:20 — forked from brentp/Makefile
lua binary module example
LUA_CFLAGS=-I/usr/include/lua
LUA_CFLAGS+=-Wall -Werror
all: stringext.so
stringext.so: stringext.c
$(CC) $(LUA_CFLAGS) -O3 -fPIC -o stringext.o -c stringext.c
$(CC) -shared -O3 stringext.o -o stringext.so
clean: