← history for Makefile
919a9011Makefile10 lines⬡ raw↓ download
 1
 2
 3
 4
 5
 6
 7
 8
 9
10
.PHONY: clean

BUILD_DIR:= ./build


build: 
	test -d $(BUILD_DIR) || mkdir -p $(BUILD_DIR) && (export CGO_ENABLED=0; go build -o $(BUILD_DIR)/altgit)

clean:
	rm -fr ./build ; go clean