NunoSempere
af208844b5
In particular, stop using the installation directory for anything and instead move to /opt/rosenrot The user specific cache remains at /home/user/.cache
15 lines
591 B
Makefile
15 lines
591 B
Makefile
## 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 ./plugins/libre_redirect/str_replace_start.c ./plugins/libre_redirect/str_init.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=$(CUSTOM_STYLES) $(SHORTCUTS) $(READABILITY) $(LIBRE_REDIRECT)
|
|
# PLUGINS=$(STAND_IN)
|
|
|
|
|