
makefile是什么文件(makefile文件规则)
- 科技
- 2023-08-14
- 5

大家好,今天小编来为大家解答makefile是什么文件这个问题,makefile文件规则很多人还不知道,现在让我们一起来看看吧!linux加载驱动的两种makefile...
大家好,今天小编来为大家解答makefile是什么文件这个问题,makefile文件规则很多人还不知道,现在让我们一起来看看吧!
linux加载驱动的两种makefile文件
二Makefile文件有两种写法:
一种是:
#Addyourdebuggingflag(ornot)toCFLAGS
ifneq($(KERNELRELEASE),)
obj-m:=boot.o
else
KERNELDIR?=/lib/modules/$(shelluname-r)/build
PWD:=$(shellpwd)
default:
$(MAKE)-C$(KERNELDIR)M=$(PWD)modules
endif
另外一种是:
#Addyourdebuggingflag(ornot)toCFLAGS
ifneq($(KERNELRELEASE),)
obj-m:=boot.o
else
KERNELDIR?=/usr/src/linux-headers-2.6.38-8-generic
PWD:=$(shellpwd)
default:
$(MAKE)-C$(KERNELDIR)M=$(PWD)modules
endif
比较两者可以发现,该两个Makefi二Makefile文件有两种写法:
一种是:
#Addyourdebuggingflag(ornot)toCFLAGS
ifneq($(KERNELRELEASE),)
obj-m:=boot.o
else
KERNELDIR?=/lib/modules/$(shelluname-r)/build
PWD:=$(shellpwd)
default:
$(MAKE)-C$(KERNELDIR)M=$(PWD)modules
endif
另外一种是:
#Addyourdebuggingflag(ornot)toCFLAGS
ifneq($(KERNELRELEASE),)
obj-m:=boot.o
else
KERNELDIR?=/usr/src/linux-headers-2.6.38-8-generic
PWD:=$(shellpwd)
default:
$(MAKE)-C$(KERNELDIR)M=$(PWD)modules
endif
比较两者可以发现,该两个Makefi二Makefile文件有两种写法:
一种是:
#Addyourdebuggingflag(ornot)toCFLAGS
ifneq($(KERNELRELEASE),)
obj-m:=boot.o
else
KERNELDIR?=/lib/modules/$(shelluname-r)/build
PWD:=$(shellpwd)
default:
$(MAKE)-C$(KERNELDIR)M=$(PWD)modules
endif
另外一种是:
#Addyourdebuggingflag(ornot)toCFLAGS
ifneq($(KERNELRELEASE),)
obj-m:=boot.o
else
KERNELDIR?=/usr/src/linux-headers-2.6.38-8-generic
PWD:=$(shellpwd)
default:
$(MAKE)-C$(KERNELDIR)M=$(PWD)modules
endif
比较两者可以发现,该两个Makefile的唯一差别是KERNELDIR的不同,
le的唯一差别是KERNELDIR的不同,
le的唯一差别是KERNELDIR的不同,
makefile文件通过make编译后用什么命令运行
makefile文件是一个命令的集合,指导shell生成需要的目标文件。生成的目标文件一般在当前目录下。
你可以在shell下使用./@@@来执行生成的目标文件。@@@是生成的目标文件的文件名。
我看你的问题,估计makefile不是你写的,应该是在安装别人的软件。
这种情况makefile里一般有个install目标,,你在make后直接在shell中输入makeinstall就OK了。你要是还有什么问题可以把makefile文件发给我,我给你看看。
makefile文件的含义
Makefile是一种配置文件,Makefile一个工程中的源文件不计数,其按类型、功能、模块分别放在若干个目录中,makefile定义了一系列的规则来指定,哪些文件需要先编译,哪些文件需要后编译,哪些文件需要重新编译,甚至于进行更复杂的功能操作,因为makefile就像一个Shell脚本一样,其中也可以执行操作系统的命令。
vscode怎样在终端运行makefile文件
vscode在终端运行makefile文件需要使用version2.0版本,创建task,建立label,isdefault,添加makefile文件,支持选项为taget=main,cc=g++,实现在工程目录下添加Makefile文件,首先安装C/C++的两个依赖,随后在debug,launch会自动的生成下方的launch.json,prelauchtask,build,task.json,//主要的就是这个,表示执行make命令(注,文件夹下需要Makefile文件),最终实现"group":{"kind":"build","isDefault":true}。
如何使用CMAKE生成makefile文件
CMake是一个跨平台的安装(编译)工具,可以用简单的语句来描述所有平台的安装(编译过程)。他能够输出各种各样的makefile或者project文件,能测试编译器所支持的C++特性。只是CMake的组态档取名为CmakeLists.txt。Cmake并不直接建构出最终的软件,而是产生标准的建构档(如linux的Makefile或WindowsVisualC++的projects/workspaces),然后再依一般的建构方式使用。
在linux平台下使用CMake生成Makefile并编译的流程如下:
编写CmakeLists.txt。
执行命令“cmakePATH”或者“ccmakePATH”生成Makefile(PATH是CMakeLists.txt所在的目录)。
使用make命令进行编译
工程实例:
一.编写各层CMakeLists.txt
主目录的主程序main.cpp
#include"hello.h"
externHellohello;
intmain()
{
hello.Print();
return0;
}
主目录的CMakeLists.txt
#totherootbinarydirectoryoftheprojectas${MAIN_BINARY_DIR}.
project(MAIN)
#versionsupport
cmake_minimum_required(VERSION2.8)
#Recurseintothe"Hello"and"Demo"subdirectories.Thisdoesnotactually
#causeanothercmakeexecutabletorun.Thesameprocesswillwalkthrough
#theproject'sentiredirectorystructure.
add_subdirectory(Hello)
add_subdirectory(Demo)
#MakesurethecompilercanfindincludefilesfromourHellolibrary.
include_directories(${MAIN_SOURCE_DIR}/Hello)
#MakesurethelinkercanfindtheHelloDemolibraryonceitisbuilt.
link_directories(${HELLO_BINARY_DIR}/Hello)
link_directories(${HELLO_BINARY_DIR}/Demo)
#definethesourcecoedesofcurrentdirectoryasDIR_SRCS
AUX_SOURCE_DIRECTORY(.DIR_SRCS)
#Addexecutablecalled"MAIN"thatisbuiltfromthesourcefiles
add_executable(Main${DIR_SRCS})
#LinktheexecutabletotheHelloDemolibrary.
target_link_libraries(MainHelloDemo)
定义项目名project(MAIN),使得当前目录可以用${MAIN_SOURCE_DIR},由于有2个子目录,所以需要add_subdirectory它们。由于主程序会使用到其他库,因而也需要指定连接库所在目录。
主目录下的作用是利用add_executable将当前目录下的源文件编译成Main程序,然后通过target_link_libraries链接Hello和Demo库。由于主程序文件使用了hello.h文件,所以要include_directories该目录。
---------------------------------------------------------------------------------------------------
子目录Demo的子程序demo.c
#include"hello.h"
Hellohello;
子目录Demo的CMakeLists.txt
#MakesurethecompilercanfindincludefilesfromourHellolibrary.
include_directories(${MAIN_SOURCE_DIR}/Hello)
#definethesourcecoedesofcurrentdirectoryasDIR_DEMO_SRCS
AUX_SOURCE_DIRECTORY(.DIR_DEMO_SRCS)
#Addlibrarycalled"Demo"thatisbuiltfromthesourcefiles
add_library(Demo${DIR_DEMO_SRCS})
Demo目录下的CMakeLists主要作用是利用add_library将当前目录源码编译成Demo库,由于该库使用到hello.h文件,所以要include_directories该目录。
---------------------------------------------------------------------------------------------------
子目录Hello的子程序hello.h
#ifndef_hello_h
#define_hello_h
classHello
{
public:
voidPrint();
};
#endif
子目录Hello的子程序hello.c
#include"hello.h"
#include
voidHello::Print()
{
printf("Hello,World!\n");
}
子目录Hello的CMakeLists.txt
#definethesourcecoedesofcurrentdirectoryasDIR_HELLO_SRCS
AUX_SOURCE_DIRECTORY(.DIR_HELLO_SRCS)
#Addlibrarycalled"hello"thatisbuiltfromthesourcefiles
add_library(Hello${DIR_HELLO_SRCS})
Hello目录下的CMakeLists主要作用是利用add_library将当前目录源码编译成Hello库。
---------------------------------------------------------------------------------------------------
二.执行cmake命令
至此我们完成了项目中所有CMakeLists.txt文件的编写,进入目录step2中依次执行命令
#cmake.
默认当前目录,生产makefile
#make
最后编译程序
makefile生成多个执行文件要怎么写
两个c文件是要变成同一个可执行程序的话那么ldflags加上-lpthread就可以了。因为ld是在将两个.o合成可执行文件用的。如果是分别编成两个可执行文件,建议写两个makefile使用不同的ld选项。
makefile是什么文件的介绍就聊到这里吧,感谢你花时间阅读本站内容,更多关于makefile文件规则、makefile是什么文件的信息别忘了在本站进行查找哦。
本文链接:http://www.depponpd.com/ke/3051.html