diff options
| author | gonzo <gonzo@toniatuh.com> | 2024-11-03 21:40:57 +0100 |
|---|---|---|
| committer | gonzo <gonzo@toniatuh.com> | 2024-11-03 21:40:57 +0100 |
| commit | c24e9c8679d43ad5960864b1e7c746b2dcf53562 (patch) | |
| tree | fcb7ff154121c7b93ace293ce8f7aa6cc3bfea32 | |
| parent | 5e764e9edd3c5e33fa9a384b49b74e5c4eb370a3 (diff) | |
| download | gambit-raylib-c24e9c8679d43ad5960864b1e7c746b2dcf53562.tar.gz | |
moved pkg-config flags to library definition in sld
| -rw-r--r-- | makefile | 7 | ||||
| -rw-r--r-- | raylib.sld | 1 |
2 files changed, 5 insertions, 3 deletions
@@ -1,6 +1,7 @@ all: loadable loadable: - gsc -:s -debug -dynamic \ - -pkg-config gl -pkg-config raylib \ - raylib.sld + gsc -:s -debug -dynamic raylib.sld + +clean: + rm raylib.o* @@ -3,6 +3,7 @@ (export with-drawing begin-drawing end-drawing) (export in-scissor-mode begin-scissor-mode end-scissor-mode) (import (gambit)) + (pkg-config "gl" "raylib") ;;; ------- ;;; structs |
