Golang基础学习笔记,部分来自刘丹冰老师课程中学习到的内容
Missing Semester Lecture 6 - Version Control (Git)
MIT The Missing semester Lecture of Your CS Education Lecture 6 - Version Control (Git)
每条规则中的命令和操作系统Shell的命令行是一致的。make会一按顺序一条一条的执行命令,每条命令的开头必须以 Tab 键开头,除非,命令是紧跟在依赖规则后面的分号后的。在命令行之间中的空格或是空行会被忽略,但是如果该空格或空行是以Tab键开头的,那么make会认为其是一个空命令。
规则包含两个部分,一个是依赖关系,一个是生成目标的方法。
make命令执行时,需要一个makefile文件,以告诉make命令需要怎么去编译和链接程序。
Missing Semester Lecture 10 - Potpourri
MIT The Missing semester Lecture of Your CS Education Lecture 10 - Potpourri
Missing Semester Lecture 9 - Security and Cryptography
MIT The Missing semester Lecture of Your CS Education Lecture 9 - Security and Cryptography
Missing Semester Lecture 8 - Metaprogramming
MIT The Missing semester Lecture of Your CS Education Lecture 8 - Metaprogramming
Missing Semester Lecture 7 - Debugging and Profiling
MIT The Missing semester Lecture of Your CS Education Lecture 7 - Debugging and Profiling
Missing Semester Lecture 5 - Command-line Environment
MIT The Missing semester Lecture of Your CS Education Lecture 5 - Command-line Environment