mirror of
https://github.com/gatieme/LDD-LinuxDeviceDrivers.git
synced 2026-02-07 21:23:37 +08:00
20 lines
222 B
Makefile
20 lines
222 B
Makefile
all:github
|
|
|
|
|
|
|
|
GITHUB_COMMIT := $(COMMIT)
|
|
|
|
|
|
ifeq ($(COMMIT), )
|
|
GITHUB_COMMIT="linux-cpu变频节能子系统cpufreq..."
|
|
endif
|
|
|
|
|
|
.PHONY : github
|
|
github:
|
|
git add -A
|
|
git commit -m $(GITHUB_COMMIT)
|
|
git push origin master
|
|
|
|
|