mirror of
https://github.com/msgpack/msgpack-python.git
synced 2026-02-07 10:19:51 +00:00
11 lines
159 B
Makefile
11 lines
159 B
Makefile
include $(GOROOT)/src/Make.$(GOARCH)
|
|
|
|
TARG=msgpack
|
|
|
|
GOFILES=pack.go unpack.go
|
|
|
|
include $(GOROOT)/src/Make.pkg
|
|
|
|
%: install %.go
|
|
$(GC) $*.go
|
|
$(LD) -o $@ $*.$O
|