25'ten fazla konu seçemezsiniz Konular bir harf veya rakamla başlamalı, kısa çizgiler ('-') içerebilir ve en fazla 35 karakter uzunluğunda olabilir.

23 satır
413 B

  1. # standard GO make file preamble
  2. include $(GOROOT)/src/Make.inc
  3. # target package name
  4. TARG=iconv
  5. # regular go files
  6. GOFILES=\
  7. reader.go\
  8. writer.go\
  9. # files that must be processed by cgo
  10. CGOFILES=\
  11. converter.go\
  12. iconv.go\
  13. # on non glibc systems, we usually need to load the library
  14. ifneq ($(GOOS),linux)
  15. CGO_LDFLAGS=-liconv
  16. endif
  17. # standard GO make file include for packages
  18. include $(GOROOT)/src/Make.pkg