Updated to work with CHICKEN 5. Thanks to Andy Bennett <andyjpb@ashurst.eu.org> for doing most of the work! Moved hmac.release-info* uri targz to point at code.thintz.com instead of github.
15 lines
392 B
Plaintext
15 lines
392 B
Plaintext
; 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:
|
|
'((static "hmac.o"))) ;; for static linking
|