aboutsummaryrefslogtreecommitdiff
path: root/build.sh
diff options
context:
space:
mode:
authorNunoSempere <nuno.sempere@protonmail.com>2023-02-07 14:17:10 +0100
committerNunoSempere <nuno.sempere@protonmail.com>2023-02-07 14:17:10 +0100
commitb50d30851b844b74dbd9e03dd9de8d0fa5b0a9f8 (patch)
treea696cc5bc9ae1b3acc675d6a07f1ce1df47097c4 /build.sh
parent35f968f29bca56274d32996541cde747f250224c (diff)
fix: fix some warts
- stuff to deal with plugin code wasn't actually compiling - created a "stand_in" plugin to provide headers and function definitions - when these are not used - it is likely there are better approaches here - hidebar, newtab -> hide_bar, new_tab
Diffstat (limited to 'build.sh')
-rwxr-xr-xbuild.sh5
1 files changed, 3 insertions, 2 deletions
diff --git a/build.sh b/build.sh
index 11974c7..558d361 100755
--- a/build.sh
+++ b/build.sh
@@ -2,7 +2,8 @@
CC=clang
SRC=rose.c
-REQS= #./plugins/*/*.c
+# REQS=./plugins/*/*.c
+REQS=./plugins/stand_in/stand_in.c
DEPS='webkit2gtk-4.0'
INCS=`pkg-config --cflags ${DEPS}`
@@ -11,5 +12,5 @@ LIBS=`pkg-config --libs ${DEPS}`
# Optional adblocking depends on https://github.com/jun7/wyebadblock
WYEBAB='-L/usr/lib/wyebrowser/adblock.so'
-cp -f config.def.h config.h
+# cp -f config.def.h config.h
$CC $INCS $REQS $SRC -o rose $LIBS $WYEBAB