You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
209 B
15 lines
209 B
6 years ago
|
APP?=hhskills
|
||
|
ROOT_DIR:=$(shell dirname $(realpath $(lastword $(MAKEFILE_LIST))))
|
||
|
|
||
|
.PHONY: run
|
||
|
run:
|
||
|
go run ${APP}.go $(filter-out $@, $(MAKECMDGOALS)); :
|
||
|
|
||
|
.PHONY: build
|
||
|
build:
|
||
|
go build ${APP}.go
|
||
|
|
||
|
%:
|
||
|
@true
|
||
|
|