2010-11-21 20:07:31 +00:00
|
|
|
# Copyright 2009 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 $(GOROOT)/src/Make.inc
|
|
|
|
|
|
|
|
TARG=irc/server/config
|
|
|
|
GOFILES=\
|
|
|
|
config.go\
|
2010-11-28 16:39:25 +00:00
|
|
|
parser.go\
|
2010-11-21 20:07:31 +00:00
|
|
|
|
|
|
|
include $(GOROOT)/src/Make.pkg
|
2010-11-28 16:39:25 +00:00
|
|
|
|
|
|
|
parser.go: parser.rl
|
2010-12-01 22:57:50 +00:00
|
|
|
ragel-svn -Z -G2 -o parser.go parser.rl
|
2010-11-28 16:39:25 +00:00
|
|
|
|