122437115d
Fix order of CC arguments to aid in linking on newer versions
16 lines
329 B
Bash
Executable File
16 lines
329 B
Bash
Executable File
#!/bin/sh
|
|
|
|
CC=clang
|
|
SRC=rose.c
|
|
REQS= #./plugins/*/*.c
|
|
DEPS='webkit2gtk-4.0'
|
|
|
|
INCS=`pkg-config --cflags ${DEPS}`
|
|
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
|
|
$CC $INCS $REQS $SRC -o rose $LIBS $WYEBAB
|