diff options
author | NunoSempere <nuno.sempere@protonmail.com> | 2023-05-13 23:24:52 -0400 |
---|---|---|
committer | NunoSempere <nuno.sempere@protonmail.com> | 2023-05-13 23:26:39 -0400 |
commit | c46e2ba3985846019d3377895e52fc360a6ce061 (patch) | |
tree | bfacc8c51beedf1ef1d9366b25dd2e397e80337b /makefile | |
parent | 5fb7e79ad5f7d55e2a196905aad181f750631dd9 (diff) |
incorporate shortcuts plugin into rose.c and makefile
Diffstat (limited to 'makefile')
-rw-r--r-- | makefile | 5 |
1 files changed, 3 insertions, 2 deletions
@@ -25,12 +25,13 @@ ADBLOCK=#'-L/usr/lib/wyebrowser/adblock.so' ## Plugins LIBRE_REDIRECT=./plugins/libre_redirect/libre_redirect.c ./plugins/libre_redirect/str_replace_start.c -READABILITY=./plugins/readability/readability.c CUSTOM_STYLES=./plugins/style/style.c +READABILITY=./plugins/readability/readability.c +SHORTCUTS=./plugins/shortcuts/shortcuts.c STAND_IN=./plugins/stand_in/stand_in.c # gives function definitions for the above, which do nothing -PLUGS=$(LIBRE_REDIRECT) $(READABILITY) $(CUSTOM_STYLES) +PLUGS=$(LIBRE_REDIRECT) $(READABILITY) $(CUSTOM_STYLES) $(SHORTCUTS) # PLUGS=$(STAND_IN) # Note that if you want some plugins but not others, # You should edit the stand_in.c file |