2021-02-08 07:46:24 +01:00
|
|
|
#!/usr/bin/env sh
|
|
|
|
exec guile -L . -s "$0" "$@"
|
|
|
|
!#
|
|
|
|
|
2021-02-11 11:55:40 +01:00
|
|
|
(use-modules (potato make)
|
2021-02-08 07:46:24 +01:00
|
|
|
(srfi srfi-1))
|
|
|
|
|
2021-02-13 01:34:18 +01:00
|
|
|
(initialize '("test" "foo.exe" "--verbose"))
|
|
|
|
(: "foo.exe" '("foo.c")
|
|
|
|
"cc -o foo.exe foo.c")
|
|
|
|
(execute)
|
2021-02-08 07:46:24 +01:00
|
|
|
|
|
|
|
|