This repository has been archived on 2025-09-14. You can view files and clone it, but cannot push or open issues or pull requests.
Files
zhangyang-libzt/examples/csharp/Makefile
2021-01-04 21:03:57 -08:00

12 lines
290 B
Makefile

debug:
cd ../../ && make host_pinvoke_debug
cp -f ../../lib/debug/linux-x86_64/libzt.so .
mono-csc -out:example.exe *.cs
release:
cd ../../ && make host_pinvoke_release
cp -f ../../lib/release/linux-x86_64/libzt.so .
mono-csc -out:example.exe *.cs
clean:
rm -rf libzt.* example.exe