build 2.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. #!/bin/sh
  2. ./run-interp <<DATA
  3. LindevCompiler.Compile('Lin/Mod', 'Obsd.Dl.txt')
  4. LindevCompiler.Compile('Lin/Mod', 'Obsd.Libc.txt')
  5. LindevCompiler.Compile('Lin/Mod', 'Obsd.linKernel.txt')
  6. LindevCompiler.Compile('System/Mod', 'Files.txt')
  7. LindevCompiler.Compile('System/Mod', 'Dialog.txt')
  8. LindevCompiler.Compile('System/Mod', 'Math.txt')
  9. LindevCompiler.Compile('System/Mod', 'Strings.txt')
  10. LindevCompiler.Compile('Lin/Mod', 'Obsd.linHostFiles.txt')
  11. LindevCompiler.Compile('System/Mod', 'Meta.txt')
  12. LindevCompiler.Compile('Std/Mod', 'Loader.txt')
  13. LindevCompiler.Compile('System/Mod', 'Console.txt')
  14. LindevCompiler.Compile('Lin/Mod', 'Console.txt')
  15. LindevCompiler.Compile('Lin/Mod', 'Kernel_so_init.txt')
  16. LindevCompiler.Compile('', 'Views.txt')
  17. LindevCompiler.Compile('Std/Mod', 'Interpreter.txt')
  18. LindevCompiler.Compile('Lindev/Mod', 'CPM.txt')
  19. LindevCompiler.Compile('Lindev/Mod', 'CPT.txt')
  20. LindevCompiler.Compile('Lindev/Mod', 'CPS.txt')
  21. LindevCompiler.Compile('Lindev/Mod', 'CPH.txt')
  22. LindevCompiler.Compile('Lindev/Mod', 'CPB.txt')
  23. LindevCompiler.Compile('Lindev/Mod', 'CPP.txt')
  24. LindevCompiler.Compile('Lindev/Mod', 'CPE.txt')
  25. LindevCompiler.Compile('Lindev/Mod', 'CPL486.txt')
  26. LindevCompiler.Compile('Lindev/Mod', 'CPC486.txt')
  27. LindevCompiler.Compile('Lindev/Mod', 'CPV486.txt')
  28. LindevCompiler.Compile('', 'LindevCompiler.txt')
  29. LindevCompiler.Compile('', 'LindevElfLinker16.txt')
  30. LindevCompiler.Compile('', 'Interp.txt')
  31. LindevCompiler.Compile('', 'Init-Interp.txt')
  32. LindevElfLinker.LinkDll('libBB.so := Kernel+ Files HostFiles StdLoader')
  33. # LindevElfLinker.LinkDll('libBBInterp.so := Kernel+ Kernel_so_init# Console Math Strings LinConsole Files HostFiles LindevCPM LindevCPT LindevCPS LindevCPH LindevCPB LindevCPP LindevCPE LindevCPL486 LindevCPC486 LindevCPV486 LindevCompiler LindevElfLinker Dialog Meta Views StdInterpreter Interp#')
  34. LindevElfLinker.LinkDll('libBBInterp.so := Kernel+ Console Math Strings LinConsole Files HostFiles LindevCPM LindevCPT LindevCPS LindevCPH LindevCPB LindevCPP LindevCPE LindevCPL486 LindevCPC486 LindevCPV486 LindevCompiler LindevElfLinker Dialog Meta Views StdInterpreter Interp#')
  35. DATA