任务:1.学习Linux系统安全命令

           2.学习Linux常用工具

今日任务完成情况:vim编辑器插入模式,命令模式,底行模式3个模式下的指令熟悉并操作,gcc工具指令基本了解

自我评价:还算OK   gcc和Makefile部分为重点难点需要加强巩固消化

3、make和Makefile

1)makefile基本语法。文件名一般大写M开头

target:dependency

[tab]command

2)makefile使用变量时需要$(),例如

Target=hello

Object=hello.o  x.o

$(Target):$(object)

[tab]gcc  $(Object)  -o  $(Target)

.PHONY:clean

clean:

[tab]rm  *.o

附上今日笔记:

               7月18日学习Linux命令心得

7月18日学习Linux命令心得

 

相关文章:

  • 2021-12-01
  • 2021-07-23
  • 2022-12-23
  • 2022-01-15
  • 2021-11-02
  • 2021-12-05
  • 2021-07-27
猜你喜欢
  • 2021-04-26
  • 2021-09-23
  • 2021-12-05
  • 2022-01-16
  • 2021-11-08
  • 2021-09-05
  • 2022-02-07
相关资源
相似解决方案