Creating makefile

前端 未结 1 1728
清酒与你
清酒与你 2021-01-29 05:44

I am trying to create the makefiles and configure for my library which its directory structure is like following:

 $projectroot
    ├── lib
    ├── src
    └── test
<         


        
相关标签:
1条回答
  • 2021-01-29 06:27

    Just list part1 and part2 as dependencies of part3:

    all: part1 part2 part3
    
    part1:
       MAKE PART1
    
    part2: part1
       MAKE PART2
    
    part3: part1 part2
       MAKE PART3
    
    0 讨论(0)
提交回复
热议问题