about summary refs log tree commit diff
path: root/vendor/github.com/radareorg/r2pipe-go/Makefile
blob: 5dd762a27c95c69e1913c798bf2db7c7ae8f300c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
all:
	go test

ex:
	cd example ; go run example.go

sync:
	git clone --depth=1 https://github.com/radareorg/radare2-r2pipe
	cp -rf radare2-r2pipe/go/*.go .
	rm -rf radare2-r2pipe

.PHONY: all sync