免费注册 查看新帖 |

Chinaunix

  平台 论坛 博客 文库
最近访问板块 发新帖
查看: 2737 | 回复: 0
打印 上一主题 下一主题

我的Linux驱动以及应用的通用Makefile,请帮忙挑bug [复制链接]

论坛徽章:
0
跳转到指定楼层
1 [收藏(0)] [报告]
发表于 2012-09-28 11:58 |只看该作者 |倒序浏览
本帖最后由 Akagi201 于 2012-09-28 19:22 编辑

放在博客里没人看啊, 最近一直在修改,调试,不知道还有没有可以改进和修改的地方了,与大家新人们一起分享下。

希望高手们可以指点下。

博客地址:(不断修改完善)
http://blog.csdn.net/akagi201/article/details/8019809
http://blog.csdn.net/akagi201/article/details/8014704
http://blog.csdn.net/akagi201/article/details/8014697

代码的目录结构
|
|-project/
  |----app/
  |-----Makefile(app Makefile)
  |----dev/
  |-----Makefile(dev Makefile)
  |----Makefile(Top Makefile)

  1. ###############################################################################
  2. # @file Makefile
  3. # @note HangZhou Hikvision Digital Technology Co., Ltd. All Right Reserved.
  4. # @brief Top Generic Mkefile
  5. #
  6. # @author   liuboyf1
  7. # @data     2012-09-26
  8. # @version  V1.0.0
  9. # @note     History:
  10. # @note     <author>    <time>       <version>    <desc>
  11. # @note     liuboyf1    2012-09-11   V1.0.0       创建文件
  12. # @note     liuboyf1    2012-09-26   V1.0.1       添加make app make dev分别编译功能
  13. ###############################################################################

  14. PWD = $(shell pwd)
  15. all: app dev
  16. app:
  17.         make -C $(PWD)/app
  18. dev:
  19.         make -C $(PWD)/dev
  20. clean:
  21.         make clean -C $(PWD)/app
  22.         make clean -C $(PWD)/dev
  23. .PHONY: all app dev clean
复制代码

  1. ###############################################################################
  2. # @file Makefile
  3. # @note HangZhou Hikvision Digital Technology Co., Ltd. All Right Reserved.
  4. # @brief    Linux Device Driver Generic Makefile
  5. #
  6. # @author   liuboyf1
  7. # @data     2012-09-28
  8. # @version  V1.0.2
  9. # @note     History:
  10. # @note     <author>    <time>       <version>    <desc>
  11. # @note     liuboyf1    2012-08-30   V1.0.0       创建文件
  12. # @note     liuboyf1    2012-09-26   V1.0.1       修改了CFLAGS为EXTRA_CFLAGS
  13. # @note     liuboyf1    2012-09-26   V1.0.2       简化了调试宏部分
  14. # @note     liuboyf1    2010-09-28   V1.0.3       修改rm为-rm
  15. ###############################################################################

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

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

  29. CC = $(TOOL_PREFIX)gcc
  30. #AR:= $(TOOL_PREFIX)ar -rv
  31. EXTRA_CFLAGS += $(DEBFLAGS)
  32. #EXTRA_CFLAGS += -I$(LDDINC)

  33. MODULE_NAME = mycdev
  34. ifneq ($(KERNELRELEASE),)


  35. obj-m := $(MODULE_NAME).o
  36. #$(MODULE_NAME)-objs := file_opr.o mem_proc.o main.o

  37. else

  38. # in my Debian6 2.6.32
  39. KERNELDIR ?=/lib/modules/2.6.32/build
  40. # in my IPC 2.6.18
  41. #KERNELDIR ?= /home/akagi201/kernel_step

  42. PWD := $(shell pwd)

  43. modules:
  44.         $(MAKE) -C $(KERNELDIR) M=$(PWD) modules
  45.         cp $(MODULE_NAME).ko $(PWD)/..

  46. modules_install:
  47.         $(MAKE) -C $(KERNELDIR) M=$(PWD) modules_install
  48. endif

  49. clean:
  50.         -rm -rf *.o *~ core .depend .*.cmd *.ko *.mod.* .*.o.cmd .*.ko.cmd .tmp_versions Module.symvers modules.order
  51. # 减号忽略部分文件出现的问题,继续后面的工作
  52. .PHONY: modules modules_install clean

  53. depend .depend dep:
  54.         $(CC) $(EXTRA_CFLAGS) -M *.c > .depend


  55. ifeq (.depend,$(wildcard .depend))
  56. include .depend
  57. endif
复制代码


  1. ###############################################################################
  2. # @file Makefile
  3. # @note HangZhou Hikvision Digital Technology Co., Ltd. All Right Reserved.
  4. # @brief    Linux Application Generic Makefile
  5. #
  6. # @author   liuboyf1
  7. # @data     2012-09-28
  8. # @version  V1.0.3
  9. # @note     History:
  10. # @note     <author>    <time>       <version>    <desc>
  11. # @note     liuboyf1    2012-09-03   V1.0.0       创建文件
  12. # @note     liuboyf1    2012-09-26   V1.0.1       修复了DEBFLAGS调试
  13. # @note     liuboyf1    2012-09-28   V1.0.2       修改rm为-rm更健壮
  14. # @note     liuboyf1    2010-09-28   V1.0.3       修改了部分注释
  15. ###############################################################################

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

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

  23. CC = $(TOOL_PREFIX)gcc

  24. # 包含的头文件,和非系统链接库
  25. #INCLUDES = -I/xxx
  26. #LIBS = -lpthread

  27. CFLAGS = -g -Wall -O2

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

  36. PWD := $(shell pwd)

  37. # 生成的可执行文件名称
  38. TARGET = test
  39. $(TARGET) : $(OBJS)
  40.         $(CC) $^ -o $@ $(CFLAGS) $(DEBFLAGS) $(INCLUDES) $(LIBS)
  41.         cp $(TARGET) $(PWD)/..

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

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

  46. .PHONY : clean

复制代码
您需要登录后才可以回帖 登录 | 注册

本版积分规则 发表回复

  

北京盛拓优讯信息技术有限公司. 版权所有 京ICP备16024965号-6 北京市公安局海淀分局网监中心备案编号:11010802020122 niuxiaotong@pcpop.com 17352615567
未成年举报专区
中国互联网协会会员  联系我们:huangweiwei@itpub.net
感谢所有关心和支持过ChinaUnix的朋友们 转载本站内容请注明原作者名及出处

清除 Cookies - ChinaUnix - Archiver - WAP - TOP