linux Makefile(中文版1)

#############################################################################
# Generic Makefile for C/C++ Program
# 用法:
# ------
# 1. 拷贝Makefile到你的代码目录下
# 2. 只有在必要时"Customizable Section"自定义
# * 为了使用非标准库,设置预编译器和编译器<MY_CFLAGS>,链接器<MY_LIBS>
# * 为了搜索更多目录下的源代码,设置<SRCDIRS>
# * 指定你喜欢的程序名,设置<PROGRAM>
# 3. 打make开始编译你的程序
#
# Make Target:
# ------------
# The Makefile provides the following targets to make:
# $ make compile and link
# $ make NODEP=yes compile and link without generating dependencies
# $ make objs compile only (no linking)
# $ make tags create tags for Emacs editor
# $ make ctags create ctags for VI editor
# $ make clean clean objects and the executable file
# $ make distclean clean objects, the executable and dependencies
# $ make help get the usage of the makefile
#
#===========================================================================

## Customizable Section: adapt those variables to suit your program.
##==========================================================================

# 预编译器和编译器选项
# MY_CFLAGS = -ggdb3 -pipe -O2 -Wall -Wextra -fopenmp -march=native -mfpmath=sse -DLINUX -m64 -std=c++0x
MY_CFLAGS = -g -DLINUX -Itest1/include -Itest2/include -Itest1/include/test1 -Itest2/include/test2

# 链接器选项,貌似又写成LIBS,如LIBS = -lmysqlclient -liconv,指定要链接的库
# MY_LIBS = -lGLEW -lglut -lGLU -lGL -lX11 -lXmu -lXi -lm -L/usr/X11R6/lib -lgomp -lOpenThreads -lpthread
MY_LIBS = -lm

# cpp使用的预编译器,如CPPFLAGS=‘-I/usr/local/libjpeg/include -I/usr/local/libpng/include‘ (man cpp for more).
CPPFLAGS =

# 链接器选项和链接器ld怎么用,如LDFLAGS = -L/var/xxx/lib -L/opt/mysql/lib -Wl,R/var/xxx/lib -Wl,R/opt/mysql/lib
LDFLAGS =

# 源文件目录
# If not specified, only the current directory will be serached.
SRCDIRS =

# 可执行文件名
# If not specified, current directory name or `a.out‘ will be used.
PROGRAM =

## Implicit Section: 必要时修改
##==========================================================================

# 源文件类型(headers excluded).
# .c是C语言文件,其它的是C++文件.
SRCEXTS = .c .C .cc .cpp .CPP .c++ .cxx .cp

# 头文件类型
HDREXTS = .h .H .hh .hpp .HPP .h++ .hxx .hp

# 预编译器和编译器选项
# 用户可以在命令行中重写这些变量U
CFLAGS =
# CXXFLAGS= -std=c++0x
CXXFLAGS=
# C程序编译器
CC = gcc

# C++程序编译器
CXX = g++

# 取消注释下面一行,C程序将被当成C++编译
#CC = $(CXX)

# 删除文件命令
RM = rm -f

ETAGS = etags
ETAGSFLAGS =

CTAGS = ctags
CTAGSFLAGS =

## Stable Section:一般不需要改变.但你可以增加更多
##==========================================================================
SHELL = /bin/sh
EMPTY =
SPACE = $(EMPTY) $(EMPTY)
ifeq ($(PROGRAM),)
CUR_PATH_NAMES = $(subst /,$(SPACE),$(subst $(SPACE),_,$(CURDIR)))
PROGRAM = $(word $(words $(CUR_PATH_NAMES)),$(CUR_PATH_NAMES))
ifeq ($(PROGRAM),)
PROGRAM = a.out
endif
endif
ifeq ($(SRCDIRS),)
SRCDIRS = .
endif
SOURCES = $(foreach d,$(SRCDIRS),$(wildcard $(addprefix $(d)/*,$(SRCEXTS))))
HEADERS = $(foreach d,$(SRCDIRS),$(wildcard $(addprefix $(d)/*,$(HDREXTS))))
SRC_CXX = $(filter-out %.c,$(SOURCES))
OBJS = $(addsuffix .o, $(basename $(SOURCES)))
DEPS = $(OBJS:.o=.d)

## 定义一些有用的变量
DEP_OPT = $(shell if `$(CC) --version | grep "GCC" >/dev/null`; then \
echo "-MM -MP"; else echo "-M"; fi )
DEPEND = $(CC) $(DEP_OPT) $(MY_CFLAGS) $(CFLAGS) $(CPPFLAGS)
DEPEND.d = $(subst -g ,,$(DEPEND))
COMPILE.c = $(CC) $(MY_CFLAGS) $(CFLAGS) $(CPPFLAGS) -c
COMPILE.cxx = $(CXX) $(MY_CFLAGS) $(CXXFLAGS) $(CPPFLAGS) -c
LINK.c = $(CC) $(MY_CFLAGS) $(CFLAGS) $(CPPFLAGS) $(LDFLAGS)
LINK.cxx = $(CXX) $(MY_CFLAGS) $(CXXFLAGS) $(CPPFLAGS) $(LDFLAGS)

.PHONY: all objs tags ctags clean distclean help show

# 删除一些默认的后缀
.SUFFIXES:

all: $(PROGRAM)

# 创建依赖文件的规则(.d).
#------------------------------------------

%.d:%.c
@echo -n $(dir {1}lt;) > [email protected]
@$(DEPEND.d) {1}lt; >> [email protected]

%.d:%.C
@echo -n $(dir {1}lt;) > [email protected]
@$(DEPEND.d) {1}lt; >> [email protected]

%.d:%.cc
@echo -n $(dir {1}lt;) > [email protected]
@$(DEPEND.d) {1}lt; >> [email protected]

%.d:%.cpp
@echo -n $(dir {1}lt;) > [email protected]
@$(DEPEND.d) {1}lt; >> [email protected]

%.d:%.CPP
@echo -n $(dir {1}lt;) > [email protected]
@$(DEPEND.d) {1}lt; >> [email protected]

%.d:%.c++
@echo -n $(dir {1}lt;) > [email protected]
@$(DEPEND.d) {1}lt; >> [email protected]

%.d:%.cp
@echo -n $(dir {1}lt;) > [email protected]
@$(DEPEND.d) {1}lt; >> [email protected]

%.d:%.cxx
@echo -n $(dir {1}lt;) > [email protected]
@$(DEPEND.d) {1}lt; >> [email protected]

# 生成目标文件的规则(.o).
#----------------------------------------
objs:$(OBJS)

%.o:%.c
$(COMPILE.c) {1}lt; -o [email protected]

%.o:%.C
$(COMPILE.cxx) {1}lt; -o [email protected]

%.o:%.cc
$(COMPILE.cxx) {1}lt; -o [email protected]

%.o:%.cpp
$(COMPILE.cxx) {1}lt; -o [email protected]

%.o:%.CPP
$(COMPILE.cxx) {1}lt; -o [email protected]

%.o:%.c++
$(COMPILE.cxx) {1}lt; -o [email protected]

%.o:%.cp
$(COMPILE.cxx) {1}lt; -o [email protected]

%.o:%.cxx
$(COMPILE.cxx) {1}lt; -o [email protected]

# 生成tags的规则.
#-------------------------------------
tags: $(HEADERS) $(SOURCES)
$(ETAGS) $(ETAGSFLAGS) $(HEADERS) $(SOURCES)

ctags: $(HEADERS) $(SOURCES)
$(CTAGS) $(CTAGSFLAGS) $(HEADERS) $(SOURCES)

# 生成executable的规则.
#-------------------------------------
$(PROGRAM):$(OBJS)
ifeq ($(SRC_CXX),) # C program
$(LINK.c) $(OBJS) $(MY_LIBS) -o [email protected]
@echo Type ./[email protected] to execute the program.
else # C++ program
$(LINK.cxx) $(OBJS) $(MY_LIBS) -o [email protected]
@echo Type ./[email protected] to execute the program.
endif

# TANG MODIFY START
#ifndef NODEP
ifdef NODEP
# TANG MODIFY END
ifneq ($(DEPS),)
sinclude $(DEPS)
endif
endif

clean:
$(RM) $(OBJS) $(PROGRAM) $(PROGRAM).exe

distclean: clean
$(RM) $(DEPS) TAGS
#############################################################################

##############################################################################
# 显示帮助
help:
@echo ‘Generic Makefile for C/C++ Programs (gcmakefile) version 0.5‘
@echo ‘Copyright (C) 2007, 2008 whyglinux <[email protected]>‘
@echo
@echo ‘Usage: make [TARGET]‘
@echo ‘TARGETS:‘
@echo ‘ all (=make) compile and link.‘
@echo ‘ NODEP=yes make without generating dependencies.‘
@echo ‘ objs compile only (no linking).‘
@echo ‘ tags create tags for Emacs editor.‘
@echo ‘ ctags create ctags for VI editor.‘
@echo ‘ clean clean objects and the executable file.‘
@echo ‘ distclean clean objects, the executable and dependencies.‘
@echo ‘ show show variables (for debug use only).‘
@echo ‘ help print this message.‘
@echo
@echo ‘Report bugs to <whyglinux AT gmail DOT com>.‘

# 显示变量 (仅用于调试用.)
show:
@echo ‘PROGRAM :‘ $(PROGRAM)
@echo ‘SRCDIRS :‘ $(SRCDIRS)
@echo ‘HEADERS :‘ $(HEADERS)
@echo ‘SOURCES :‘ $(SOURCES)
@echo ‘SRC_CXX :‘ $(SRC_CXX)
@echo ‘OBJS :‘ $(OBJS)
@echo ‘DEPS :‘ $(DEPS)
@echo ‘DEPEND :‘ $(DEPEND)
@echo ‘COMPILE.c :‘ $(COMPILE.c)
@echo ‘COMPILE.cxx :‘ $(COMPILE.cxx)
@echo ‘link.c :‘ $(LINK.c)
@echo ‘link.cxx :‘ $(LINK.cxx)
#############################################################################

时间: 2024-10-14 10:00:07

linux Makefile(中文版1)的相关文章

Linux makefile教程之总述二[转]

Makefile 总述——————— 一.Makefile里有什么? Makefile里主要包含了五个东西:显式规则.隐晦规则.变量定义.文件指示和注释. 1.显式规则.显式规则说明了,如何生成一个或多的的目标文件.这是由Makefile的书写者明显指出,要生成的文件,文件的依赖文件,生成的命令. 2.隐晦规则.由于我们的make有自动推导的功能,所以隐晦的规则可以让我们比较粗糙地简略地书写Makefile,这是由make所支持的. 3.变量的定义.在Makefile中我们要定义一系列的变量,变

Linux makefile教程之概述一[转]

概述—— 什么是makefile?或许很多Winodws的程序员都不知道这个东西,因为那些 Windows的IDE都为你做了这个工作,但我觉得要作一个好的和professional的程序员,makefile还是要懂.这就好像现在有这么多 的HTML的编辑器,但如果你想成为一个专业人士,你还是要了解HTML的标识的含义.特别在Unix下的软件编译,你就不能不自己写makefile 了,会不会写makefile,从一个侧面说明了一个人是否具备完成大型工程的能力. 因为,makefile关系到了整个工

Linux makefile 教程 很具体,且易懂

近期在学习Linux下的C编程,买了一本叫<Linux环境下的C编程指南>读到makefile就越看越迷糊,可能是我的理解能不行. 于是google到了下面这篇文章.通俗易懂.然后把它贴出来,方便学习. 后记,看完发现这篇文章和<Linux环境下的C编程指南>的makefile一章所讲述的惊人的类似,仅仅是这篇文章从一个实例切入,在有些地方比較好理解.能让人看懂就是好文章. 跟我一起写 Makefile陈皓 (CSDN)概述--什么是makefile?也许非常多Winodws的程序

很详细、很移动的Linux makefile教程:介绍,总述,书写规则,书写命令,使用变量,使用条件推断,使用函数,Make 的运行,隐含规则 使用make更新函数库文件 后序

很详细.很移动的Linux makefile 教程 内容如下: Makefile 介绍 Makefile 总述 书写规则 书写命令 使用变量 使用条件推断 使用函数 make 的运行 隐含规则 使用make更新函数库文件 后序 近期在学习Linux下的C编程,买了一本叫<Linux环境下的C编程指南>读到makefile就越看越迷糊,可能是我的理解能不行. 于是google到了以下这篇文章.通俗易懂.然后把它贴出来,方便学习. 后记,看完发现这篇文章和<Linux环境下的C编程指南>

linux makefile自动生成

一.Linux Makefile介绍 Linux Makefile是用于自动编译和链接的,一个工程有很多文件组成,每一个文件的改变都会导致工程的重新链接,但是不是所有的文件都需要重新编译,Linux Makefile中纪录有文件的信息,在make时会决定在链接的时候需要重新编译哪些文件. Linux Makefile的宗旨就是:让编译器知道要编译一个文件需要依赖其他的哪些文件.当那些依赖文件有了改变,编译器会自动的发现最终的生成文件已经过时,而重新编译相应的模块. Linux Makefile的

Linux Makefile Howto

*/--> Linux Makefile Howto As far as I can remember, I have worked with makefile for quite a while, and I will look up for the meaning of all kinds of symbols in it, and after a thorough understanding of one makefile and the combination of a makefile

【Linux学习之旅】之Ubuntu/Linux打造中文版man帮助手册

一.如何安装中文的man包 本项目的主页为: http://code.google.com/p/manpages-zh/ 本项目(manpages-zh)为 i18n-zh 项目[1]的子项,从 CMPP (中文 Man Pages 计 划) 分支而来. [1] http://code.google.com/p/i18n-zh CMPP 项目现在可能已经死亡,原主页(cmpp.linuxforum.net)已不能访问. 本项目的目的是维护 CMPP 遗留下的成果,并对其错误/漏洞进行修改. 本项

Linux makefile教程之隐含规则九[转]

隐含规则 ———— 在 我们使用Makefile时,有一些我们会经常使用,而且使用频率非常高的东西,比如,我们编译C/C++的源程序为中间目标文件(Unix下是[.o] 文件,Windows下是[.obj]文件).本章讲述的就是一些在Makefile中的“隐含的”,早先约定了的,不需要我们再写出来的规则. “隐含规则”也就是一种惯例,make会按照这种“惯例”心照不喧地来运行,那怕我们的Makefile中没有书写这样的规则.例如,把[.c]文件编译成[.o]文件这一规则,你根本就不用写出来,ma

Linux makefile教程之更新函数库文件十[转]

使用make更新函数库文件 ——————————— 函数库文件也就是对Object文件(程序编译的中间文件)的打包文件.在Unix下,一般是由命令"ar"来完成打包工作. 一.函数库文件的成员 一个函数库文件由多个文件组成.你可以以如下格式指定函数库文件及其组成: archive(member) 这个不是一个命令,而一个目标和依赖的定义.一般来说,这种用法基本上就是为了"ar"命令来服务的.如: foolib(hack.o) : hack.o ar cr fooli

Linux makefile教程之使用变量五[转]

使用变量 ———— 在 Makefile中的定义的变量,就像是C/C++语言中的宏一样,他代表了一个文本字串,在Makefile中执行的时候其会自动原模原样地展开在所使 用的地方.其与C/C++所不同的是,你可以在Makefile中改变其值.在Makefile中,变量可以使用在“目标”,“依赖目标”,“命令”或是 Makefile的其它部分中. 变量的命名字可以包含字符.数字,下划线(可以是数字开头),但不应该含有“:”.“#”.“=”或是空 字符(空格.回车等).变量是大小写敏感的,“foo”