一次关于TMPDIR的调试
前些日子,自己玩一个golang项目,为了方便,写了个Makefile
,大致内容如下:
PWD := $(shell pwd)
PKG := github.com/ckeyer/bat
TMPDIR := bundles
build:
go build -o $(TMPDIR)/app main.go
/// 其它忽略。。。
前些日子,自己玩一个golang项目,为了方便,写了个Makefile
,大致内容如下:
PWD := $(shell pwd)
PKG := github.com/ckeyer/bat
TMPDIR := bundles
build:
go build -o $(TMPDIR)/app main.go
/// 其它忽略。。。