the monthly.cgi and updating various pieces of documentation. Notably missing is the French translation. Reviewed by: bcr Approved by: bcr (mentor) Sponsored by: DARPA, AFRL Differential Revision: https://reviews.freebsd.org/D17300
28 lines
430 B
Makefile
28 lines
430 B
Makefile
# $FreeBSD$
|
|
|
|
.if exists(../Makefile.conf)
|
|
.include "../Makefile.conf"
|
|
.endif
|
|
.if exists(../Makefile.inc)
|
|
.include "../Makefile.inc"
|
|
.endif
|
|
|
|
DATA=
|
|
DATA+= cgi-lib.pl
|
|
DATA+= cgi-style.pl
|
|
|
|
CGI=
|
|
CGI+= fingerprints.cgi
|
|
CGI+= getmsg.cgi
|
|
CGI+= mailindex.cgi
|
|
CGI+= man.cgi
|
|
CGI+= mid.cgi
|
|
CGI+= mirror.cgi
|
|
CGI+= ports.cgi
|
|
|
|
.SUFFIXES: .C .cgi
|
|
|
|
.C.cgi:
|
|
${CXX} ${CFLAGS} -o ${.TARGET} ${.IMPSRC}
|
|
|
|
.include "${DOC_PREFIX}/share/mk/web.site.mk"
|