From 52544799890f7681442babe108cbff684227c417 Mon Sep 17 00:00:00 2001 From: Wesley Kerfoot Date: Tue, 8 Oct 2019 00:12:13 -0400 Subject: [PATCH] Update name of program --- .gitignore | 1 + README.md | 2 +- build.sh | 2 +- 3 files changed, 3 insertions(+), 2 deletions(-) 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