1
0
mirror of https://github.com/chai2010/advanced-go-programming-book.git synced 2025-05-24 04:22:22 +00:00
2018-04-26 07:32:11 +08:00

15 lines
288 B
Makefile

# Copyright © 2017 ChaiShushan <chaishushan{AT}gmail.com>.
# License: https://creativecommons.org/licenses/by-nc-sa/4.0/
default:
go tool cgo sum.go
go build -buildmode=c-archive -o sum.a sum.go
gcc -o a.out main.c sum.a
./a.out
clean:
-rm -rf ./_obj
-rm sum.a sum.h
-rm a.out