2011-04-16 21:33:55 -04:00
|
|
|
; author: Thomas Hintz
|
|
|
|
|
; email: t@thintz.com
|
|
|
|
|
; license: bsd
|
|
|
|
|
|
|
|
|
|
(compile -s -O2 -d1 hmac.scm -j hmac)
|
|
|
|
|
(compile -s hmac.import.scm -O2 -d0)
|
|
|
|
|
(compile -c -O2 -d1 hmac.scm -unit hmac -j hmac)
|
|
|
|
|
|
|
|
|
|
(install-extension
|
|
|
|
|
'hmac
|
|
|
|
|
; Files to install for your extension:
|
|
|
|
|
'("hmac.o" "hmac.so" "hmac.import.so")
|
|
|
|
|
; Assoc list with properties for your extension:
|
2019-01-27 17:35:18 -08:00
|
|
|
'((static "hmac.o"))) ;; for static linking
|