aboutsummaryrefslogtreecommitdiff
path: root/build.sh
diff options
context:
space:
mode:
authorNunoSempere <nuno.sempere@protonmail.com>2023-02-08 14:29:36 +0100
committerNunoSempere <nuno.sempere@protonmail.com>2023-02-08 14:29:36 +0100
commitc10b7632ebcedff280c4be1357977ae26eff4eaa (patch)
treebe358891123250b81faa644d81f348233b4937de /build.sh
parent2db650d7cc0600a0ccdc5ba31ad3a97b3b74a6ea (diff)
feat: add possibility of launching many tabs at once.
also, personalize this: - enable extensions - change to my css - change relative paths. fix various bugs: - set the zoom level in notebook_append, not in notebook_init - have a handly debug option for valgrind
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 561d03d..3518b0a 100755
--- a/build.sh
+++ b/build.sh
@@ -2,9 +2,10 @@
CC=clang
SRC=rose.c
-REQS=./plugins/*/*.c
# REQS=./plugins/stand_in/stand_in.c
+REQS=./plugins/*/*.c
DEPS='webkit2gtk-4.0'
+DEBUG= #'-g'
INCS=`pkg-config --cflags ${DEPS}`
LIBS=`pkg-config --libs ${DEPS}`
@@ -13,4 +14,4 @@ LIBS=`pkg-config --libs ${DEPS}`
WYEBAB='-L/usr/lib/wyebrowser/adblock.so'
# cp -f config.def.h config.h
-$CC $INCS $REQS $SRC -o rose $LIBS $WYEBAB
+$CC $DEBUG $INCS $REQS $SRC -o rose $LIBS $WYEBAB