diff options
author | Drew DeVault <drew@ddevault.org> | 2025-03-21 10:40:04 +0100 |
---|---|---|
committer | Alexey Yerin <yyp@disroot.org> | 2025-03-21 14:32:38 +0300 |
commit | ea84d7a04d5f2eb51c06a5cafbfd877228ab8c4a (patch) | |
tree | 5ab0c02740e402c341f01dde8294ac8eb58f8e16 /README.md | |
parent | b464972aba88159edc202d5e2fb6aef63f9cb2d2 (diff) |
Makefile: drop PHONY for hare-gi
Signed-off-by: Drew DeVault <drew@ddevault.org>
Diffstat (limited to 'README.md')
-rw-r--r-- | README.md | 15 |
1 files changed, 5 insertions, 10 deletions
diff --git a/README.md b/README.md index 9bf993c..a55f405 100644 --- a/README.md +++ b/README.md @@ -8,23 +8,18 @@ Dependencies: * Development files for GObject-Introspection, the desired GTK version and its dependencies. Make sure `/usr/share/gir-1.0` is included. -### GTK 3 -``` -./generate -make install -``` +To generate and install both GTK 3 and GTK 4 bindings: -### GTK 4 ``` -./generate4 -make install4 +$ make +# make install [PREFIX=/usr/local] [DESTDIR=] ``` ## Running examples ### GTK 3 ``` -make demo -./demo +make demo3 +./demo3 ``` ### GTK 4 |