From 302575cdb0a7ea361ad7cae18e35121285da08cc Mon Sep 17 00:00:00 2001 From: Ache Date: Sun, 14 Aug 2016 20:42:05 +0200 Subject: Site passe en static MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Désormais le site passe en static. Plus de CGI. Peut-être plus tard un autre outils de factorisation serra utilisé mais pour le moment tout est static. --- Makefile | 11 +++++------ 1 file changed, 5 insertions(+), 6 deletions(-) (limited to 'Makefile') diff --git a/Makefile b/Makefile index 14c1053..f50294a 100644 --- a/Makefile +++ b/Makefile @@ -1,9 +1,8 @@ -all: index.fcgi - -index.fcgi: main.c dev.c main.h - gcc main.c dev.c -lfcgi -o index.fcgi - pkill index.fcgi - ./index.fcgi & +install: + cp -R */ /var/www/ache + cp index.html /var/www/ache +clean: + rm -R /var/www/ache/* -- cgit v1.2.3