2022-11-14 20:41:43 +00:00
|
|
|
CC=clang
|
|
|
|
SRC=rose.c
|
2022-11-15 09:06:11 +00:00
|
|
|
DEPS=('webkit2gtk-4.0')
|
2022-11-14 20:41:43 +00:00
|
|
|
|
|
|
|
INCS=`pkg-config --cflags ${DEPS[@]}`
|
|
|
|
LIBS=`pkg-config --libs ${DEPS[@]}`
|
|
|
|
|
2022-11-17 16:57:11 +00:00
|
|
|
# Optional adblocking depends on https://github.com/jun7/wyebadblock
|
|
|
|
WYEBAB='-L/usr/lib/wyebrowser/adblock.so'
|
|
|
|
|
2022-12-16 09:07:43 +00:00
|
|
|
cp -f config.def.h config.h
|
2022-11-17 16:57:11 +00:00
|
|
|
$CC $INCS $LIBS $SRC $WYEBAB -o rose
|