GNU make manual 翻译(十二)

继续翻译

We split each long line into two lines using backslash-newline; this is    
like using one long line, but is easier to read.      
    
   To use this makefile to create the executable file called `edit',    
type:  
     make    
    
   To use this makefile to delete the executable file and all the object    
files from the directory, type:  
     make clean   

 我们用 \ 把一个长的行分割成两行,这和一行没有区别,只是更容易读。

如果需要用这个makefile来生成一个可执行文件 edit, 键入:

 make

如果需要用这个makefile来删除可执行文件和所有的目标文件,键入:

make clean

后文待续

原文地址:https://www.cnblogs.com/gaojian/p/2681883.html