diff options
author | Arun Isaac | 2022-05-05 15:52:46 +0530 |
---|---|---|
committer | Arun Isaac | 2022-05-05 15:54:34 +0530 |
commit | 6a093401f02b0a3aa9c4468042a05db9f8439ad7 (patch) | |
tree | b2c710bb43de5487246aa96d19a9a0d33dc21f3e /pre-inst-env | |
parent | 30c47a64da943d74f1de94f5d128ea9f166d66fa (diff) | |
download | gn-transform-databases-6a093401f02b0a3aa9c4468042a05db9f8439ad7.tar.gz |
Compile scheme sources.
* Makefile (GUILD, top_level_module_dir, sources, objects): New
variables.
(all, %.go, clean): New targets.
* pre-inst-env: Use built object files.
Diffstat (limited to 'pre-inst-env')
-rwxr-xr-x | pre-inst-env | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/pre-inst-env b/pre-inst-env index f83ded1..0d6e2d5 100755 --- a/pre-inst-env +++ b/pre-inst-env @@ -10,7 +10,11 @@ '())) ":"))) -(prepend-path-environment! "GUILE_LOAD_PATH" (dirname (current-filename))) +(define %source-dir + (dirname (current-filename))) + +(prepend-path-environment! "GUILE_LOAD_PATH" %source-dir) +(prepend-path-environment! "GUILE_LOAD_COMPILED_PATH" %source-dir) (match (command-line) ((_ command args ...) |