diff options
author | Alexey Yerin <yyp@disroot.org> | 2024-04-01 21:30:05 +0300 |
---|---|---|
committer | Alexey Yerin <yyp@disroot.org> | 2024-04-01 21:30:05 +0300 |
commit | 49ae43171514e882c795166014edf94da0125033 (patch) | |
tree | f44fcd37144f8cf079101d5cd9a7e2162e162f92 | |
parent | 2ae2245144bd0e74a76d45caeebc0e6d90a404f0 (diff) |
Simplify build
-rw-r--r-- | Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Makefile b/Makefile index b48219b..1a56721 100644 --- a/Makefile +++ b/Makefile @@ -45,11 +45,11 @@ HAREPATH_CMD = hare version -v | awk 'harepath { gsub(/^\t/, ""); print }; /^HAR demo: env HAREPATH="$(BINDINGS_DIR):$$($(HAREPATH_CMD))" \ - hare build $$(pkg-config --libs-only-l --static gtk+-3.0) -lbsd -o demo cmd/demo + hare build $$(pkg-config --libs-only-l gtk+-3.0) -o demo cmd/demo demo4: env HAREPATH="$(BINDINGS_DIR):$$($(HAREPATH_CMD))" \ - hare build $$(pkg-config --libs-only-l --static gtk4) -lepoxy -lXi -lxkbcommon -lwayland-client -lwayland-egl -lXfixes -lXcursor -lXdamage -lXrandr -lXinerama -lcairo-script-interpreter -lbsd -o demo4 cmd/demo4 + hare build $$(pkg-config --libs-only-l gtk4) -o demo4 cmd/demo4 clean: rm -f hare-gi xmltree demo demo4 |