[interp] Reduce computation under calc_section mutex
[mono-project.git] / samples / profiler / Makefile
blob365d861cabd64cd2ad72af830afd2902fd10d3e4
1 .PHONY: all linux osx clean
3 all:
5 linux:
6 gcc -fPIC -shared -o libmono-profiler-sample.so sample.c `pkg-config --cflags mono-2`
8 osx:
9 clang -undefined suppress -flat_namespace -o mono-profiler-sample.dylib sample.c `pkg-config --cflags mono-2`
11 clean:
12 $(RM) -f libmono-profiler-sample.so
13 $(RM) -f libmono-profiler-sample.dylib