commit 0a2327a993824a4d3c2bec034352163f83683595
parent 301e41207c041dfce52ea4f0cc133823e0531723
Author: Vincent Forest <vincent.forest@meso-star.com>
Date: Tue, 26 Aug 2025 18:20:34 +0200
Delete the config.mk file
This was unnecessary given the few configurations it contained, which
were moreover used by a single Makefile. Its content has been moved to
the Makefile.
Diffstat:
2 files changed, 6 insertions(+), 22 deletions(-)
diff --git a/Makefile b/Makefile
@@ -16,9 +16,13 @@
.POSIX:
.SUFFIXES: .md .html .sh .lint .shlint
-include config.mk
+# Destination where to synchronise data
+PREFIX=OVH:www/projects
-LINT=$(HTML:.html=.lint) $(SH:.sh=.shlint)
+# Tool used to convert Markdown to HTML
+MD2HTML=md2html
+
+LINT=$(HTML:.html=.lint) $(SH:.sh=.shlint) templates/redirect.lint
default: build
diff --git a/config.mk b/config.mk
@@ -1,20 +0,0 @@
-# Copyright (C) 2017-2025 |Méso|Star> (contact@meso-star.com)
-#
-# This program is free software: you can redistribute it and/or modify
-# it under the terms of the GNU General Public License as published by
-# the Free Software Foundation, either version 3 of the License, or
-# (at your option) any later version.
-#
-# This program is distributed in the hope that it will be useful,
-# but WITHOUT ANY WARRANTY; without even the implied warranty of
-# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
-# GNU General Public License for more details.
-#
-# You should have received a copy of the GNU General Public License
-# along with this program. If not, see <http://www.gnu.org/licenses/>.
-
-# Destination where to synchronise data
-PREFIX=OVH:www/projects
-
-# Tool used to convert Markdown to HTML
-MD2HTML=md2html