Files
IC_PRJ/Makefile

18 lines
415 B
Makefile
Raw Normal View History

COMMIT_MSG ?= "Finish top-module(axi_slave test_successful): $(shell date '+%Y-%m-%d %H:%M:%S')"
2025-08-06 13:58:23 +08:00
#--------------------------------------------------------------
help:
@echo "usage: "
@echo "make git"
@echo "make git msg='...'"
@echo "make help "
#-------------------------------------------------------------
git:
git status
git add .
git commit -m $(COMMIT_MSG)
git push origin master
.PHONY: git help