aboutsummaryrefslogtreecommitdiffstats
path: root/Makefile
diff options
context:
space:
mode:
authorRomain Gonçalves <me@rgoncalves.se>2024-07-03 16:28:16 +0200
committerRomain Gonçalves <me@rgoncalves.se>2024-07-03 16:28:16 +0200
commiteb476eb8fd7ee46bd1b7e79d378327913ada6c90 (patch)
treea6405ef8c6cf466421c2d355a3994bdf1555c222 /Makefile
parentbd4a9fd003409ac70dbb15ce9e1432ae17183eed (diff)
downloadrgoncalves.se-eb476eb8fd7ee46bd1b7e79d378327913ada6c90.tar.gz
fix(Makefile): export variable and fix rss generation
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile16
1 files changed, 8 insertions, 8 deletions
diff --git a/Makefile b/Makefile
index e922a88..1c06005 100644
--- a/Makefile
+++ b/Makefile
@@ -1,14 +1,14 @@
.POSIX:
-REMOTE_HOST := root@rgoncalves.se
-REMOTE_DIR := /var/www/htdocs/rgoncalves.se
-OUTPUT_DIR := ./out
-TEMPORARY_DIR := ./tmp
-PATH := $(PATH):../ssg
+export REMOTE_HOST := root@rgoncalves.se
+export REMOTE_DIR := /var/www/htdocs/rgoncalves.se
+export OUTPUT_DIR := ./out
+export TEMPORARY_DIR := ./tmp
+export PATH := $(PATH):../ssg
-SSG_WEBSITE_DOMAIN := rgoncalves.se
-SSG_WEBSITE_TITLE := $(SSG_WEBSITE_DOMAIN)
-SSG_WEBSITE_DESCRIPTION="devops and hacker D:"
+export SSG_WEBSITE_DOMAIN := rgoncalves.se
+export SSG_WEBSITE_TITLE := $(SSG_WEBSITE_DOMAIN)
+export SSG_WEBSITE_DESCRIPTION := devops and hacker D:
.PHONY: all \
site \
remember that computers suck.