发布时间:2015-07-27 23:39:43
toupper = $(shell echo $1 |tr '[a-z]' '[A-Z]')<br />tolower = $(shell echo $1 |tr '[A-Z]' '[a-z]')<br />mkbat = ./makebat<br />mkflag = all<br />first_upper_word = $(call toupper,$(word 1,$(subst __, ,$@)))<br />second_upper_word = $(call toupper,$(word 2,$(subst __, ,$@)))<br />mkbsp = $(mkba.........【阅读全文】
发布时间:2015-07-27 21:55:12
<p>toupper = $(shell echo $1 |tr '[a-z]' '[A-Z]')<br />tolower = $(shell echo $1 |tr '[A-Z]' '[a-z]')<br />mkbat = ./makebat<br />mkbsp = $(mkbat) $(call tolower,$(word 3,$(subst __, ,$@))) all $(call toupper,$(word 1,$(subst __, ,$@))) $(call toupper,$(word 2,$(subst __, ,$@))) <br />mklcardb.........【阅读全文】
发布时间:2015-07-27 07:18:48
toupper = $(shell echo $1 |tr '[a-z]' '[A-Z]')<br />tolower = $(shell echo $1 |tr '[A-Z]' '[a-z]')<br />mktarget1 = @echo ./makebat $(call tolower,$(word 3,$(subst _, ,$@))) all $(call toupper,$(word 1,$(subst _, ,$@))) $(call toupper,$(word 2,$(subst _, ,$@))) <br />mktarget2 = @echo ./makebat $.........【阅读全文】
发布时间:2015-07-05 16:03:16
<p style="text-indent:2em;">Linux的时间分为System Clock(系统时间)和Real Time Clock (硬件时间,简称RTC)。</p><p style="text-indent:2em;">系统时间:指当前Linux Kernel中的时间。</p><p style="text-indent:2em;">硬件时间:主板上有电池供电的时间。</p><p style="text-indent:2em;">查看系统时.........【阅读全文】