Files
LDD-LinuxDeviceDrivers/Makefile
T

17 lines
316 B
Makefile

all:github
GITHUB_COMMIT := $(COMMIT)
ifeq ($(GITHUB_COMMIT), )
GITHUB_COMMIT="使用cdev_add注册字符设备--books/fengguojin/src/1drivermodel/1-3register_chrdev--http://book.51cto.com/art/201205/337667.htm"
endif
.PHONY : github
github:
git add -A
git commit -m $(GITHUB_COMMIT)
git push origin master