aboutsummaryrefslogtreecommitdiffstats
path: root/lib/guile/makefile
diff options
context:
space:
mode:
authorÓscar Nájera <hi@oscarnajera.com>2022-11-28 17:50:11 +0100
committerÓscar Nájera <hi@oscarnajera.com>2022-11-28 17:50:11 +0100
commit7ed04b079df07d77ab22a46e2cb9e505402fe59c (patch)
tree3bbe7564730cf793008f56b082031f26a3aa8ac4 /lib/guile/makefile
parent5168eaf3c7d1808625a3918b0f133bdf26d9c7ec (diff)
downloaddotfiles-7ed04b079df07d77ab22a46e2cb9e505402fe59c.tar.gz
dotfiles-7ed04b079df07d77ab22a46e2cb9e505402fe59c.tar.bz2
dotfiles-7ed04b079df07d77ab22a46e2cb9e505402fe59c.zip
Update notmuch guile bindings
Use a makefile to remember how to do it
Diffstat (limited to 'lib/guile/makefile')
-rw-r--r--lib/guile/makefile16
1 files changed, 16 insertions, 0 deletions
diff --git a/lib/guile/makefile b/lib/guile/makefile
new file mode 100644
index 0000000..50b7bbe
--- /dev/null
+++ b/lib/guile/makefile
@@ -0,0 +1,16 @@
+##
+# Build my guile libraries
+#
+# @file
+# @version 0.1
+
+LD_LIBRARY_PATH=$HOME/.guix-profile/lib
+
+notmuch: ffi/notmuch.ffi
+ C_INCLUDE_PATH=$(HOME)/.guix-profile/include/ guild compile-ffi $<
+
+clean:
+ rm ffi/notmuch.scm
+
+
+# end