2024-02-11 21:13:53 +00:00
# C compiler
2024-03-14 22:31:04 +00:00
CC = gcc # alternatives: tcc, clang, zig cc
2023-07-27 12:34:16 +00:00
WARNINGS = -Wall
2024-02-11 21:13:53 +00:00
OPTIMIZED_SOME = -O3
OPTIMIZED_MORE = -Ofast -march= native -funit-at-a-time -flto # binary will not be compatible with other computers, but may be much faster
2024-03-15 00:05:56 +00:00
DEBUG = # -g
2024-03-24 11:54:33 +00:00
STD = -std= c99 # maybe consider moving to c11 and using safer string handling
2023-03-28 16:59:38 +00:00
2024-07-20 22:24:03 +00:00
# Dependencies for WebkitGTK4/GTK3
SRC_3 = rosenrot3.c
DEPS_3 = 'webkit2gtk-4.1'
INCS_3 = ` pkg-config --cflags ${ DEPS_3 } `
LIBS_3 = ` pkg-config --libs ${ DEPS_3 } `
# Dependencies for WebkitGTK6/GTK4
SRC_4 = rosenrot4.c
DEPS_4 = 'webkitgtk-6.0'
2024-07-21 00:02:19 +00:00
INCS_4 = ` pkg-config --cflags ${ DEPS_4 } ` ` pkg-config --cflags gtk4`
LIBS_4 = ` pkg-config --libs ${ DEPS_4 } ` ` pkg-config --libs gtk4`
# DEPRECATION_FLAGS=-DGDK_DISABLE_DEPRECATED -DGTK_DISABLE_DEPRECATED
2024-07-20 22:24:03 +00:00
# User config
2024-02-11 21:13:53 +00:00
CONFIG = config.h
2023-03-28 17:11:18 +00:00
2024-03-14 22:31:04 +00:00
# Plugins
2024-03-14 22:33:52 +00:00
i n c l u d e p l u g i n s / p l u g i n s . m k
# PLUGINS=./plugins/stand_in/stand_in.c
2024-03-24 11:07:29 +00:00
ADBLOCK = '-L/usr/lib/wyebrowser/adblock.so' # optional adblocking; depends on https://github.com/jun7/wyebadblock
2023-03-28 16:59:38 +00:00
2023-03-28 17:11:18 +00:00
## Formatter
2024-03-23 21:10:59 +00:00
STYLE_BLUEPRINT = "{BasedOnStyle: webkit, AllowShortIfStatementsOnASingleLine: true, IndentCaseLabels: true, AllowShortEnumsOnASingleLine: true}"
2024-04-14 13:00:54 +00:00
FORMATTER_C = clang-format -i -style= $( STYLE_BLUEPRINT)
FORMATTER_JS = npx prettier -w
2023-03-28 17:11:18 +00:00
2024-03-14 22:31:04 +00:00
# Runtime files
MAINTAINER_CACHE_DIR = /home/nuno/.cache/rosenrot
USER_CACHE_DIR = /home/` whoami` /.cache/rosenrot
RUNTIME_FILES_DIR = /opt/rosenrot/
2024-07-20 22:08:26 +00:00
# Start 3 to 4 transition
# https://docs.gtk.org/gtk4/migrating-3to4.html
# https://github.com/WebKit/WebKit/blob/ed1422596dce5ff012e64a38faf402ac1674fc7e/Source/WebKit/gtk/migrating-to-webkitgtk-6.0.md
2024-07-20 22:24:03 +00:00
build : $( SRC_ 3) $( PLUGINS ) $( CONFIG ) constants user_cache
$( CC) $( STD) $( WARNINGS) $( OPTIMIZED_MORE) $( DEBUG) $( INCS_3) $( PLUGINS) $( SRC_3) -o rosenrot $( LIBS_3) $( ADBLOCK)
@echo
build4 : $( SRC_ 4) $( PLUGINS ) $( CONFIG ) constants user_cache
$( CC) $( STD) $( WARNINGS) $( DEPRECATION_FLAGS) $( OPTIMIZED_MORE) $( DEBUG) $( INCS_4) $( PLUGINS) $( SRC_4) -o rosenrot $( LIBS_4) $( ADBLOCK)
2024-05-09 13:20:52 +00:00
@echo
2024-03-14 22:31:04 +00:00
constants :
2024-05-09 13:20:52 +00:00
@echo
2024-03-15 00:05:56 +00:00
@echo "# Computing constants"
2023-04-22 01:31:11 +00:00
cd plugins/readability/ && sh recompute_READABILITY_N.sh
cd plugins/style && sh recompute_STYLE_N.sh
2024-03-15 00:05:56 +00:00
@echo
2023-05-09 02:48:22 +00:00
2024-03-14 22:31:04 +00:00
user_cache :
2024-03-15 00:05:56 +00:00
@if [ ` id -u` -eq 0 ] ; then echo "can't run make user_cache with sudo, because USER_CACHE_DIR would be /home/root/.cache" ; return 1; fi
@echo "# Create user cache"
2024-03-14 22:31:04 +00:00
mkdir -p $( USER_CACHE_DIR)
2024-05-09 13:20:52 +00:00
find . -type f -not -path "*.git*" -not -path "*makefile*" \
-exec sed -i " s| $( MAINTAINER_CACHE_DIR) | $( USER_CACHE_DIR) |g " { } +
2024-03-15 00:05:56 +00:00
@echo
2024-03-14 22:31:04 +00:00
runtime_files :
2024-05-09 13:20:52 +00:00
@echo
2024-03-14 22:31:04 +00:00
sudo mkdir -p /opt/rosenrot/
sudo cp style.css /opt/rosenrot/
sudo cp -r images/flower-imgs /opt/rosenrot/
2024-03-18 00:31:11 +00:00
sudo cp plugins/style/style.js /opt/rosenrot/
sudo cp plugins/readability/readability.js /opt/rosenrot/
2024-03-14 22:31:04 +00:00
install : rosenrot runtime_files
2024-03-14 18:47:36 +00:00
cp -f rosenrot /usr/bin
cp rosenrot-mklink /usr/bin
2024-05-09 13:20:52 +00:00
@echo
2023-03-28 16:59:38 +00:00
2023-03-28 17:44:54 +00:00
uninstall :
2024-03-14 22:31:04 +00:00
rm -r /opt/rosenrot
2024-03-14 18:47:36 +00:00
rm /usr/bin/rosenrot
rm /usr/bin/rosenrot-mklink
2024-03-14 22:31:04 +00:00
rm $( USER_CACHE_DIR)
2023-03-28 17:44:54 +00:00
clean :
2024-03-14 18:47:36 +00:00
rm rosenrot
2024-03-14 22:31:04 +00:00
rm $( USER_CACHE_DIR)
2023-03-28 17:44:54 +00:00
2024-02-11 14:56:53 +00:00
format : $( SRC ) $( PLUGINS )
2024-04-14 13:00:54 +00:00
$( FORMATTER_C) $( SRC) $( PLUGINS) $( rosenrot.h)
$( FORMATTER_JS) plugins/readability/readability.js
$( FORMATTER_JS) plugins/style/style.js
2024-03-12 17:16:29 +00:00
2024-03-14 17:58:59 +00:00
lint :
2024-03-18 00:31:11 +00:00
clang-tidy $( SRC) $( PLUGINS) -- -Wall -O3 $( INCS) -o rosenrot $( LIBS)
2024-03-14 17:58:59 +00:00
## A few more commands:
fast : $( SRC ) $( PLUGINS ) $( CONFIG )
rm -f *.gcda
GIO_MODULE_DIR = /usr/lib/x86_64-linux-gnu/gio/modules/
2024-03-14 18:47:36 +00:00
$( CC) $( WARNINGS) $( OPTIMIZED_MORE) -fprofile-generate $( INCS) $( PLUGINS) $( SRC) -o rosenrot $( LIBS) $( ADBLOCK)
2024-03-14 17:58:59 +00:00
@echo "Now use the browser for a while to gather some profiling data"
sleep 2
2024-03-14 18:47:36 +00:00
./rosenrot
$( CC) $( WARNINGS) $( OPTIMIZED_MORE) -fprofile-use $( INCS) $( PLUGINS) $( SRC) -o rosenrot $( LIBS) $( ADBLOCK)
2024-03-14 17:58:59 +00:00
rm -f *.gcda
2024-03-14 22:33:52 +00:00
inspect : rosenrot
2024-03-14 18:47:36 +00:00
GTK_DEBUG = interactive ./rosenrot
2024-03-14 17:58:59 +00:00
2024-03-14 22:33:52 +00:00
diagnose_deprecations : rosenrot
2024-03-14 18:47:36 +00:00
G_ENABLE_DIAGNOSTIC = 1 ./rosenrot
2024-03-12 17:46:41 +00:00
view-gtk3-version :
dpkg -l libgtk-3-0
2024-03-14 22:31:04 +00:00
twitter :
sudo mkdir -p /usr/bin/rosenrot-browser
sudo cp rosenrot /usr/bin/rosenrot-browser/twitter
# COMPILETIME_DEPRECATION_WARNINGS=#-DGDK_DISABLE_DEPRECATED -DGTK_DISABLE_DEPRECATED # turns out that webkit2gtk-4.1 is using some deprecated stuff, lol