ust: generate traces readable in lttv
[ust.git] / hello / Makefile
1 all: hello
2
3 hello: hello.c
4 #dynamic version
5 # gcc -g -I../libmarkers -I../share -I../libtracing -L../libmarkers -lmarkers -L../libtracectl -ltracectl -L../libtracing -ltracing -o hello hello.c marker-control.c serialize.c -static
6 #static version
7 gcc -g -I../libmarkers -I../share -I../libtracing -L../libmarkers -o hello hello.c marker-control.c serialize.c ../libtracing/*.c ../libmarkers/*.c ../libtracectl/*.c ../share/*.c
8
9 clean:
10 rm -rf hello *.o
11
12 .PHONY: all hello clean
This page took 0.028026 seconds and 4 git commands to generate.