From dbf78dac50e288ff968125ab1e96c7ba995cead1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Dag-Erling=20Sm=C3=B8rgrav?= Date: Thu, 15 May 2003 10:48:50 +0000 Subject: [PATCH] Add a Makefile for the web bits. --- tools/tools/tinderbox/Makefile | 2 ++ tools/tools/tinderbox/www/Makefile | 11 +++++++++++ 2 files changed, 13 insertions(+) create mode 100644 tools/tools/tinderbox/www/Makefile diff --git a/tools/tools/tinderbox/Makefile b/tools/tools/tinderbox/Makefile index 7a0a26971269..b686988ce07a 100644 --- a/tools/tools/tinderbox/Makefile +++ b/tools/tools/tinderbox/Makefile @@ -5,4 +5,6 @@ BINOWN ?= ${USER} BINGRP ?= ${USER} SCRIPTS = tbmaster.pl tinderbox.pl +SUBDIR = www + .include diff --git a/tools/tools/tinderbox/www/Makefile b/tools/tools/tinderbox/www/Makefile new file mode 100644 index 000000000000..ba40ed9b4e27 --- /dev/null +++ b/tools/tools/tinderbox/www/Makefile @@ -0,0 +1,11 @@ +# $FreeBSD$ + +CGI = index.cgi +DATA = tb.css valid-css.gif valid-xhtml10.png +WWWDIR ?= ${HOME}/public_html + +realinstall: + ${INSTALL} -m 0755 ${CGI} ${WWWDIR} + ${INSTALL} -m 0644 ${DATA} ${WWWDIR} + +.include