Java教程

makefile 基础

本文主要是介绍makefile 基础,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!

命令前加破折号:make忽略命令行返回的状态

clean:
        -rm *.o *~ core paper

命令前加@:不打印命令本身,只返回结果

install:
        @echo You must be root to install

条件指令

ifeq ($(CC),gcc)
        $(CC) -o foo $(objects) $(libs_for_gcc)
else
        $(CC) -o foo $(objects) $(normal_libs)
endif

 include指令

include指令告诉make暂停读取当前makefile文件,转而读取一个或多个其它的makefile,然后再继续当前makefile
include ${TOP_DIR}/config/common/makefile.mk

 指定头文件路径

先定义一个变量存头文件路径,比如变量 INCLUDES

INCLUDES += \
  -I${TOP_DIR}/ \
  -I${TOP_DIR}/common/include/quectel/open \
  -I${TOP_DIR}/interface/network/sockets/inc \
  -I${TOP_DIR}/interface/dev/inc \

 makefile 里调用 shell 输出

PWD:=$(shell pwd)

 

 

 

 

这篇关于makefile 基础的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!