Makefile 426 B

12345678910111213141516
  1. test-wasm:
  2. emcc -s EXIT_RUNTIME=1 -s ALLOW_MEMORY_GROWTH=1 -s WASM_BIGINT -s EXPORTED_FUNCTIONS='["_main","_malloc","_free"]' \
  3. -s EXPORTED_RUNTIME_METHODS='["ccall","cwrap"]' -g0 -O3 test.c -o test-wasm.js
  4. test-wincli:
  5. gcc test.c -o test-wincli
  6. test-wingui:
  7. gcc -mwindows test.c -o test-wingui
  8. test-linux:
  9. gcc test.c -o test-linux
  10. test-mac:
  11. gcc -x objective-c -fobjc-exceptions test.c -o test-mac -framework AppKit