pmfile 643 B

1234567891011121314151617181920212223242526272829303132333435363738
  1. -- $Source$
  2. -- $State$
  3. -- $Revision$
  4. local d = ROOTDIR.."plat/pc86/"
  5. include (d.."libsys/pmfile")
  6. local bootsector = ackfile {
  7. file (d.."boot.s"),
  8. install = pm.install("%BINDIR%lib/pc86/boot.o"),
  9. }
  10. local descr = group {
  11. install = pm.install(d.."descr", "%BINDIR%%PLATIND%/%PLATFORM%/descr")
  12. }
  13. platform_pc86 = group {
  14. ARCH = "i86",
  15. PLATFORM = "pc86",
  16. OPTIMISATION = "-O",
  17. -- Ensure the descr file is installed first because we'll need it
  18. -- to build the libraries.
  19. descr,
  20. -- Build the back-end support.
  21. mach_i86,
  22. support_i86,
  23. lang_runtimes,
  24. -- Build the PC standalone syscall library.
  25. libsys_pc86,
  26. bootsector,
  27. }