GO=go .PHONY: all all: cgo-callback mylib.o: mylib.c cgo-callback: mylib.o mylib.h $(GO) build .PHONY: clean clean: rm -f mylib.o cgo-callback