Makefile 804 B

123456789101112131415161718192021
  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. ./compiler_new ./source/Compiler.ob07 linux64exe -out ./compiler_new2 -stk 2
  6. upx -f ./compiler_new2
  7. ls -hal
  8. lin32:
  9. ./compiler ./source/Compiler.ob07 linux32exe -out ./bin/compiler32 -stk 2
  10. lin64sample1:
  11. ./compiler ./samples/linux/hello.ob07 linux64exe -out ./bin/hello -stk 2
  12. ./bin/hello
  13. lin64sample2:
  14. ./compiler ./samples/linux/x11/animation.ob07 linux64exe -out ./bin/animation -stk 2
  15. ./bin/animation
  16. win64:
  17. ./compiler ./source/Compiler.ob07 win64con -out ./bin/Compiler.exe -stk 2
  18. win32:
  19. ./compiler ./source/Compiler.ob07 win32con -out ./bin/Compiler32.exe -stk 2
  20. kos:
  21. ./compiler ./source/Compiler.ob07 kosexe -out ./bin/Compiler.kex -stk 2