aboutsummaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile4
1 files changed, 4 insertions, 0 deletions
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