2011-01-15 07:34:30 +08:00
|
|
|
include $(GOROOT)/src/Make.inc
|
|
|
|
|
2011-01-15 17:06:50 +08:00
|
|
|
# target package name
|
2011-01-15 07:34:30 +08:00
|
|
|
TARG=iconv
|
|
|
|
|
2011-01-15 17:06:50 +08:00
|
|
|
# regular go files
|
2011-01-15 07:34:30 +08:00
|
|
|
GOFILES=\
|
2011-01-15 17:06:50 +08:00
|
|
|
reader.go\
|
2011-01-15 07:34:30 +08:00
|
|
|
|
2011-01-15 17:06:50 +08:00
|
|
|
# files that must be processed by cgo
|
2011-01-15 07:34:30 +08:00
|
|
|
CGOFILES=\
|
2011-01-15 17:06:50 +08:00
|
|
|
converter.go\
|
2011-01-15 07:34:30 +08:00
|
|
|
iconv.go\
|
|
|
|
|
|
|
|
include $(GOROOT)/src/Make.pkg
|