aboutsummaryrefslogtreecommitdiff
path: root/plugins/plugins.mk
blob: f8d000fd190ed1edd11a13f1e5a2d8e652f56ff4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
## Shared
COMMON_CODE=./plugins/strings/strings.c

## Plugins
CUSTOM_STYLES=./plugins/style/style.c
SHORTCUTS=./plugins/shortcuts/shortcuts.c
READABILITY=./plugins/readability/readability.c 
LIBRE_REDIRECT=./plugins/libre_redirect/libre_redirect.c

ADBLOCK='-L/usr/lib/wyebrowser/adblock.so' # optional adblocking; depends on https://github.com/jun7/wyebadblock

STAND_IN=./plugins/stand_in/stand_in.c # gives function definitions for the above, which do nothing

PLUGINS=$(COMMON_CODE) $(CUSTOM_STYLES) $(SHORTCUTS) $(READABILITY) $(LIBRE_REDIRECT) 
# PLUGINS=$(STAND_IN)