mirror of
https://github.com/gatieme/LDD-LinuxDeviceDrivers.git
synced 2026-08-19 01:22:36 +08:00
20 lines
227 B
Makefile
20 lines
227 B
Makefile
all:github
|
|
|
|
|
|
|
|
GITHUB_COMMIT := $(COMMIT)
|
|
|
|
|
|
ifeq ($(COMMIT), )
|
|
GITHUB_COMMIT="更新了内存管理之页式管理机制..."
|
|
endif
|
|
|
|
|
|
.PHONY : github
|
|
github:
|
|
git add -A
|
|
git commit -m $(GITHUB_COMMIT)
|
|
git push origin master
|
|
|
|
|