aboutsummaryrefslogtreecommitdiff
path: root/build.sh
diff options
context:
space:
mode:
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