X-Git-Url: http://git.lttng.org./?a=blobdiff_plain;f=hello%2FMakefile;h=4168e6e60561dfeec8a8031ec826afe99b52d46d;hb=fbd8191b00521bbe7e52a6d1ff4bb814708f06ba;hp=1133d19e21238a3a335b3097d6f3589843b30712;hpb=59b161cdfcaad93fee295add37090a3d991e7aa8;p=lttng-ust.git diff --git a/hello/Makefile b/hello/Makefile index 1133d19e..4168e6e6 100644 --- a/hello/Makefile +++ b/hello/Makefile @@ -1,7 +1,11 @@ all: hello hello: hello.c - gcc -g -I../libmarkers -I../share -L../libmarkers -lmarkers -L../libtracectl -ltracectl -o hello hello.c +#dynamic version + 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 + # -Wl,--print-map +#static version +# 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 clean: rm -rf hello *.o