diff --git a/.gitignore b/.gitignore index 0f089ca..a2747a1 100644 --- a/.gitignore +++ b/.gitignore @@ -1,3 +1,4 @@ *.gch a.out *.wav +schemekit diff --git a/README.md b/README.md index 60e48eb..f620219 100644 --- a/README.md +++ b/README.md @@ -11,5 +11,5 @@ A web browser you can control from your Scheme repl! * Compile with `./build.sh` ## How to use -* Run `./a.out` after compiling and it will launch the browser. +* Run `./schemekit` after compiling and it will launch the browser. * Run `(open-page "https://example.org")` to see it in action. diff --git a/build.sh b/build.sh index dea91b0..7b2e8cd 100755 --- a/build.sh +++ b/build.sh @@ -1,2 +1,2 @@ #! /usr/bin/bash -gcc $(pkg-config --cflags --libs guile-2.2 gtk+-3.0 webkit2gtk-4.0) browser.c +gcc $(pkg-config --cflags --libs guile-2.2 gtk+-3.0 webkit2gtk-4.0) browser.c -o schemekit