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 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