1
0
mirror of https://github.com/chai2010/advanced-go-programming-book.git synced 2025-05-24 12:32:21 +00:00
2018-12-15 15:34:16 +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