remove strip target

This commit is contained in:
yosh 2023-05-21 23:17:44 -05:00
parent 4b0fe0e291
commit 1de6886ad2
1 changed files with 1 additions and 6 deletions

View File

@ -16,12 +16,7 @@ default: release
# To compile code on linux you will need the mono runtime and mcs (the mono c# compiler), and that's it actually.
release:
mcs ${LIB_PATH} ${LIBS} *.cs -t:library -out:../${BINARY} -optimize
# This strips out code from reference assemblies so only the symbols are
# present for linking.
strip:
for file in ./References/*; do mono-cil-strip "$$file"; done
mcs -v ${LIB_PATH} ${LIBS} *.cs -t:library -out:../${BINARY} -optimize
# To compile the shaders, you will need:
# - wine64 to be installed,