什么是make文件和cmake的应用程序? [英] Whats application of make file and cmake?

查看:178
本文介绍了什么是make文件和cmake的应用程序?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

当我下载一些 pp linux 时,大部分都是

是否有一些文件名 makefile

当我用 cmake 搜索面对时?

什么是cmake?什么申请他们

这是makefile的一部分:

 dir:=。 
makemode:= misc

DISTFILES:= configure

include ./Makeconf

##这个目录的子目录都应该提到这里

#Hurd libraries
lib-subdirs = libshouldbeinlibc libihash libiohelp libports libthreads \
libpager libfshelp libdiskfs libtrivfs libps \
libnetfs libpipe libstore libhurdbugaddr libftpconn libcons

#Hurd程序
prog-subdirs = auth proc exec term \
ext2fs isofs tmpfs fatfs \
storeio pflocal pfinet defpager mach-defpager \
login daemons boot console \
hostmux usermux ftpfs trans \
console-client utils sutils \
benchmarks fstests \
random \
procfs \
startup \
init \

ifeq($(HAVE_SUN_RPC),yes)
prog-subdirs + = nfs nfsd
endif

#其他目录
o ther-subdirs = hurd doc config release包括

#所有子目录在一起
subdirs = $(lib-subdirs)$(prog-subdirs)$(other-subdirs)

#这允许在任何prog-subdirs中创建文件BROKEN;
#将阻止此顶级Makefile尝试创建它。
working-prog-subdirs:= $(filter-out \
$(patsubst%/,%,\
$(dir $(wildcard $(prog-subdirs:= / BROKEN)))),\
$(prog-subdirs))


$(子目录):version.h



什么语言用于makefile?

i知道它用于安装我的aap。

请指导我。



我尝试了什么:



i即使是downuloaded cmake for window但我没有关于

制作文件的想法。

解决方案

(HAVE_SUN_RPC),是)
prog-subdirs + = nfs nfsd
endif

#其他目录
other-subdirs = hurd doc config release包括

#所有子目录在一起
subdirs =


(LIB-子目录)

(PROG-子目录)

hi,when i downloaded some app linux,in most them
is there some file name makefile?
when i search i faced with cmake?
whats cmake?what application them?
this is part of a makefile:

dir := .
makemode := misc

DISTFILES := configure

include ./Makeconf

## Subdirectories of this directory should all be mentioned here

# Hurd libraries
lib-subdirs = libshouldbeinlibc libihash libiohelp libports libthreads \
	      libpager libfshelp libdiskfs libtrivfs libps \
	      libnetfs libpipe libstore libhurdbugaddr libftpconn libcons

# Hurd programs
prog-subdirs = auth proc exec term \
	       ext2fs isofs tmpfs fatfs \
	       storeio pflocal pfinet defpager mach-defpager \
	       login daemons boot console \
	       hostmux usermux ftpfs trans \
	       console-client utils sutils \
	       benchmarks fstests \
	       random \
	       procfs \
	       startup \
	       init \

ifeq ($(HAVE_SUN_RPC),yes)
prog-subdirs += nfs nfsd
endif

# Other directories
other-subdirs = hurd doc config release include

# All the subdirectories together
subdirs = $(lib-subdirs) $(prog-subdirs) $(other-subdirs)

# This allows the creation of a file BROKEN in any of the prog-subdirs;
# that will prevent this top level Makefile from attempting to make it.
working-prog-subdirs := $(filter-out \
			  $(patsubst %/,%,\
				 $(dir $(wildcard $(prog-subdirs:=/BROKEN)))),\
			  $(prog-subdirs))


$(subdirs): version.h


what language uses for makefile?
i know it uses for installing my aap.
please guide me.

What I have tried:

i even downuloaded cmake for window but i didn't any idea about
making file.

解决方案

(HAVE_SUN_RPC),yes) prog-subdirs += nfs nfsd endif # Other directories other-subdirs = hurd doc config release include # All the subdirectories together subdirs =


(lib-subdirs)


(prog-subdirs)


这篇关于什么是make文件和cmake的应用程序?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆