iconv-go/Makefile
Donovan Jimenez 690531c87e * Added README.md
* moved sample programs to examples directory
 * cleaned up make make file
 * converter.go: ConvertString now uses Convert under the hood, removes some code duplication
 * reader.go: No need to have two separate buffers, can write directly in to buffer given in Read call. Simplifies code greatly
2011-01-15 04:06:50 -05:00

16 lines
215 B
Makefile

include $(GOROOT)/src/Make.inc
# target package name
TARG=iconv
# regular go files
GOFILES=\
reader.go\
# files that must be processed by cgo
CGOFILES=\
converter.go\
iconv.go\
include $(GOROOT)/src/Make.pkg