Nicer PERFORM of TEST-OP
[iolib.git] / src / iolib.syscalls.asd
blob2822828300feb18eb32a4c6948fd84f8171e1072
1 ;;;; -*- Mode: Lisp; indent-tabs-mode: nil -*-
3 (asdf:defsystem :iolib.syscalls
4   :description "Syscalls and foreign types."
5   :maintainer "Stelian Ionescu <sionescu@cddr.org>"
6   :version (:read-file-form "../version.lisp-expr")
7   :licence "MIT"
8   :defsystem-depends-on (:iolib.asdf :iolib.conf :iolib-grovel)
9   :depends-on (:trivial-features :cffi :iolib.base :iolib-grovel)
10   :around-compile "iolib.asdf:compile-wrapper"
11   :encoding :utf-8
12   :pathname "syscalls/"
13   :components
14   ((:file "pkgdcl")
15    #+unix
16    (:file "syscall-path-strings" :pathname "unix-syscall-path-strings")
17    ;; Platform-specific files
18    (:iolib-grovel-file "ffi-types" :pathname #+unix "ffi-types-unix")
19    (:file "conditions")
20    (:file "os-conditions" :pathname #+unix "os-conditions-unix")
21    (:file "designators")
22    (:file "early")
23    (:file "ffi-functions" :pathname #+unix "ffi-functions-unix"))
24   :serial t)