Akagi201的Linux应用通用Makefile

3 篇文章 0 订阅
1 篇文章 0 订阅
###############################################################################
# @file Makefile
# @note HangZhou Hikvision Digital Technology Co., Ltd. All Right Reserved.
# @brief    Linux Application Generic Makefile
# 
# @author   liuboyf1
# @data     2012-09-28
# @version  V1.0.5
# @note     History:
# @note     <author>    <time>       <version>    <desc>
# @note     liuboyf1    2012-09-03   V1.0.0       创建文件
# @note     liuboyf1    2012-09-26   V1.0.1       修复了DEBFLAGS调试
# @note     liuboyf1    2012-09-28   V1.0.2       修改rm为-rm更健壮
# @note     liuboyf1    2012-09-28   V1.0.3       修改了部分注释
# @note     liuboyf1    2012-10-09   V1.0.4       修改了rm注释不能在同一行
# @note     liuboyf1    2012-10-15   V1.0.5       修改了调试参数和布局
###############################################################################

# The prefix to be added before the GNU compiler tools (optionally including
# path), i.e. "arm-linux-" or "/opt/bin/arm-linux-".
#TOOL_DIR = /opt/v5t_le-mv401_uc
# 交叉编译工具
#TOOL_PREFIX = $(TOOL_DIR)/bin/arm_v5t_le-

# Comment/uncomment the following line to enable/disable debugging
#DEBUG = y
ifeq ($(DEBUG),y)
	DEBFLAGS = -O -g # "-O" is needed to expand inlines
	#DEBFLAGS += -DDEBUG # 控制是否打印调试和错误信息
else
	DEBFLAGS = -O2
endif

CFLAGS += -Wall
#INCLUDES = -I/xxx 
#LIBS = -lpthread

#tool chain
CC = $(TOOL_PREFIX)gcc

SRCS = $(wildcard *.c) # 当前目录下所有以.c结尾的源文件,wildcard 扩展通配符
OBJS = $(SRCS:.c = .o) # .c=.o是做一个替换,把变量$(sources)所有[.c]的字串都替换成.o

PWD := $(shell pwd)

# 生成的可执行文件名称
TARGET = test

$(TARGET) : $(OBJS)
	$(CC) $^ -o $@ $(CFLAGS) $(DEBFLAGS) $(INCLUDES) $(LIBS)
	#cp $(TARGET) $(PWD)/..

%.o : %.c
	$(CC) -c $< $(CFLAGS) $(DEBFLAGS)

clean :
# 忽略某些文件问题,继续做后面的事情
	-rm -f *.o $(TARGET)

.PHONY : clean


 

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 打赏
    打赏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

Akagi201

你的鼓励将是我创作的最大动力

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值