Makefile 693 B

123456789101112131415161718
  1. lin64:
  2. ./compiler ./source/Compiler.ob07 linux64exe -out ./bin/compiler_new -stk 2
  3. upx -f ./bin/compiler_new
  4. cp ./bin/compiler_new ./compiler_new
  5. lin32:
  6. ./compiler ./source/Compiler.ob07 linux32exe -out ./bin/compiler32 -stk 2
  7. lin64sample1:
  8. ./compiler ./samples/linux/hello.ob07 linux64exe -out ./bin/hello -stk 2
  9. ./bin/hello
  10. lin64sample2:
  11. ./compiler ./samples/linux/x11/animation.ob07 linux64exe -out ./bin/animation -stk 2
  12. ./bin/animation
  13. win64:
  14. ./compiler ./source/Compiler.ob07 win64con -out ./bin/Compiler.exe -stk 2
  15. win32:
  16. ./compiler ./source/Compiler.ob07 win32con -out ./bin/Compiler32.exe -stk 2
  17. kos:
  18. ./compiler ./source/Compiler.ob07 kosexe -out ./bin/Compiler.kex -stk 2