Skip to content

Instantly share code, notes, and snippets.

View eepp's full-sized avatar

Philippe Proulx eepp

View GitHub Profile
@eepp
eepp / Makefile
Last active August 29, 2015 14:11 — forked from simark/Makefile
all: libtruc.so app tracepoints.so
app: app.o
gcc -o app app.o -ldl
app.o: app.c
gcc -c app.c -g3 -O0 -Wall
libtruc.so: truc.o tracepoints.o
gcc -shared -o libtruc.so truc.o -ldl