diff options
author | des <des@FreeBSD.org> | 2003-05-15 10:48:50 +0000 |
---|---|---|
committer | des <des@FreeBSD.org> | 2003-05-15 10:48:50 +0000 |
commit | ac12b4c2882b9954d33c0ad5f874b0272c0238ca (patch) | |
tree | b71fcbc37598e72987affd199775ca2ef4ebe96d /tools | |
parent | aae5a35ae3961b8cead5bea7dd09704989154f02 (diff) | |
download | FreeBSD-src-ac12b4c2882b9954d33c0ad5f874b0272c0238ca.zip FreeBSD-src-ac12b4c2882b9954d33c0ad5f874b0272c0238ca.tar.gz |
Add a Makefile for the web bits.
Diffstat (limited to 'tools')
-rw-r--r-- | tools/tools/tinderbox/Makefile | 2 | ||||
-rw-r--r-- | tools/tools/tinderbox/www/Makefile | 11 |
2 files changed, 13 insertions, 0 deletions
diff --git a/tools/tools/tinderbox/Makefile b/tools/tools/tinderbox/Makefile index 7a0a269..b686988 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 <bsd.prog.mk> diff --git a/tools/tools/tinderbox/www/Makefile b/tools/tools/tinderbox/www/Makefile new file mode 100644 index 0000000..ba40ed9 --- /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 <bsd.prog.mk> |