aboutsummaryrefslogtreecommitdiff
path: root/build.sh
diff options
context:
space:
mode:
Diffstat (limited to 'build.sh')
-rwxr-xr-xbuild.sh3
1 files changed, 2 insertions, 1 deletions
diff --git a/build.sh b/build.sh
index fcb7bea..7805479 100755
--- a/build.sh
+++ b/build.sh
@@ -1,5 +1,6 @@
CC=clang
SRC=rose.c
+REQS=./plugins/*/*.c
DEPS=('webkit2gtk-4.0')
INCS=`pkg-config --cflags ${DEPS[@]}`
@@ -9,4 +10,4 @@ LIBS=`pkg-config --libs ${DEPS[@]}`
WYEBAB='-L/usr/lib/wyebrowser/adblock.so'
cp -f config.def.h config.h
-$CC $INCS $LIBS $SRC $WYEBAB -o rose
+$CC $INCS $LIBS $REQS $SRC $WYEBAB -o rose