picolisp

Unnamed repository; edit this file to name it for gitweb.
git clone https://logand.com/git/picolisp.git/
Log | Files | Refs | README | LICENSE

mkAsm.l (423B)


      1 # 17oct12abu
      2 # (c) Software Lab. Alexander Burger
      3 
      4 (setq
      5    *Architecture (opt)
      6    *System (opt)
      7    *Format (opt)
      8    *TargetOS (opt)
      9    *Module (opt)
     10    *FPic (bool (opt)) )
     11 
     12 (load "lib/asm.l"
     13    (pack "lib/fmt" *Format ".l")
     14    (pack "arch/" *Architecture ".l") )
     15 
     16 (build (pack *Architecture *System "." *Module *Format) (opt)
     17    (load (pack "sys/" *Architecture *System ".defs.l") "defs.l" T) )
     18 
     19 (bye)
     20 
     21 # vi:et:ts=3:sw=3