home *** CD-ROM | disk | FTP | other *** search
/ HPAVC / HPAVC CD-ROM.iso / pc / ABUSESRC.ZIP / AbuseSrc / macabuse / src / net / unix / maker.lsp < prev    next >
Encoding:
Lisp/Scheme  |  1997-05-20  |  637 b   |  26 lines

  1.  
  2. (perm-space)
  3. (setq outdir ".")
  4.  
  5. ;; appends something to the end of a list
  6. (defun app (head tail) (if (null head) tail (cons (car head) (app (cdr head) tail))))
  7.  
  8.  
  9. (setq targets     
  10.     `(("undrv" 
  11.        ("undrv"       ; the main program
  12.         "tcpip"       ; unix tcpip related net interface
  13.         "netdrv"      ; engine/driver interface 
  14.         "gserver"     ; game server
  15.         "gclient"     ; game client
  16.         "fileman"     ; file manager
  17.         )
  18.        nil
  19.        ("../inc")
  20.        "")))
  21.  
  22. (setq imlib_dir      "../../../../imlib/")
  23. (setq cflags         "")
  24. (compile-file        (concatenate 'string imlib_dir "makemake.lsp"))
  25.  
  26.