my-tv/Makefile

12 lines
204 B
Makefile
Raw Normal View History

2023-12-15 13:04:32 +08:00
.PHONY: all
all: info
branch := $(shell git rev-parse --abbrev-ref HEAD)
commit := $(shell git rev-parse --short HEAD)
info:
@echo 'SHELL='$(SHELL)
@echo 'branch='$(branch)
@echo 'commit='$(commit)