1
0
mirror of https://github.com/golang/go synced 2024-10-07 22:41:22 -06:00
go/src/pkg/http/cgi/Makefile
Brad Fitzpatrick d64a18a27e cgi: child support (e.g. Go CGI under Apache)
The http/cgi package now supports both being
a CGI host or being a CGI child process.

R=rsc, adg, bradfitzwork
CC=golang-dev
https://golang.org/cl/4245070
2011-03-08 08:01:19 -08:00

13 lines
256 B
Makefile

# Copyright 2011 The Go Authors. All rights reserved.
# Use of this source code is governed by a BSD-style
# license that can be found in the LICENSE file.
include ../../../Make.inc
TARG=http/cgi
GOFILES=\
child.go\
host.go\
include ../../../Make.pkg