Makefile 99 B

12345678
  1. all: build
  2. build:
  3. go build -v -buildmode=c-shared -o ./bin/libsimple.so ./src/*.go
  4. .PHONY: all