- Author: Philippe Proulx
- Date: Fri Sep 13 18:05:26 EDT 2013
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |