美文网首页
Learn C the Hard Way Ex2:Using M

Learn C the Hard Way Ex2:Using M

作者: 爱跑步的coder | 来源:发表于2018-06-20 21:37 被阅读0次

    Makefile imply dependencies and ancient lore

    ancient lore
    1 make(是对第一个target进行操作)

    2 省略

    ex1:ex1.c
    
    
    CFLAGS=-Wall -g
    
    all:clean ex1
    
    clean:
        rm -rf ex1
    
    

    all:clean ex1代表了两步操作。

    CFLAGS=-Wall -g
    
    all:clean ex1
    
    clean:
        rm -rf ex1
    
    

    相关文章

      网友评论

          本文标题:Learn C the Hard Way Ex2:Using M

          本文链接:https://www.haomeiwen.com/subject/bfqfyftx.html