/Makefile
Makefile | 12 lines | 9 code | 3 blank | 0 comment | 0 complexity | b27e97597d67ee95db8f739fc69f667d MD5 | raw file
1include $(GOROOT)/src/Make.inc 2 3TARG=github.com/tarm/goserial 4 5ifeq ($(GOOS),windows) 6GOFILES=serial_$(GOOS).go 7else 8CGOFILES=serial_$(GOOS).go 9endif 10GOFILES+=serial.go 11 12include $(GOROOT)/src/Make.pkg