From 74184dd792fde977b7c55b159038ad0d8d7f3c7e Mon Sep 17 00:00:00 2001 From: Rodrigo Arias Mallo Date: Tue, 7 Jan 2025 15:06:26 +0100 Subject: Add CSS style for gemini pages --- Makefile | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'Makefile') diff --git a/Makefile b/Makefile index 51036ae..1ff7047 100644 --- a/Makefile +++ b/Makefile @@ -1,6 +1,7 @@ NAME = gemini BIN = $(NAME).filter.dpi DILLO_DIR = ~/.dillo +CSS = style.css DPI_DIR = $(DILLO_DIR)/dpi/$(NAME) DPIDRC = $(DILLO_DIR)/dpidrc @@ -21,13 +22,16 @@ install-proto: $(DPIDRC) link: $(BIN) install-proto mkdir -p $(DPI_DIR) ln -frs $(BIN) $(DPI_DIR) + ln -frs $(CSS) $(DPI_DIR) install: $(BIN) install-proto mkdir -p $(DPI_DIR) cp -f $(BIN) $(DPI_DIR) + cp -f $(CSS) $(DPI_DIR) uninstall: $(BIN) rm -f $(DPI_DIR)/$(BIN) + rm -f $(DPI_DIR)/$(CSS) .PHONY: all install install-proto uninstall -- cgit v1.2.3