mirror of
https://github.com/gatieme/LDD-LinuxDeviceDrivers.git
synced 2026-08-19 10:26:03 +08:00
20 lines
251 B
Makefile
20 lines
251 B
Makefile
all:github
|
|
|
|
|
|
|
|
GITHUB_COMMIT := $(COMMIT)
|
|
|
|
|
|
ifeq ($(COMMIT), )
|
|
GITHUB_COMMIT="更新了内存管理之内存描述(四)--页帧struct page详解..."
|
|
endif
|
|
|
|
|
|
.PHONY : github
|
|
github:
|
|
git add -A
|
|
git commit -m $(GITHUB_COMMIT)
|
|
git push origin master
|
|
|
|
|