Chinaunix首页 | 论坛 | 博客
  • 博客访问: 104384
  • 博文数量: 25
  • 博客积分: 2047
  • 博客等级: 大尉
  • 技术积分: 265
  • 用 户 组: 普通用户
  • 注册时间: 2009-07-14 20:51
文章分类

全部博文(25)

文章存档

2012年(1)

2011年(4)

2010年(2)

2009年(18)

我的朋友

分类: LINUX

2009-07-31 23:29:18

#
# Description:
# Makefile for 2.6 device drivers
#
# Comment/uncomment the following line to disable/enable debugging
#DEBUG = y
# Add your debugging flag (or not) to CFLAGS
ifeq ($(DEBUG),y)
DEBFLAGS = -O -g -DCAN_DEBUG
# "-O" is needed to expand inlines
else
DEBFLAGS = -O2
endif
#CFLAGS += $(DEBFLAGS) //i am not sure how to use this line
ifneq ($(KERNELRELEASE),)
# call from kernel build system
obj-m := hello.o             //编译模块的名称
else
KERNELDIR ?= /home/boboo/Tools/hfrk/linux-2.6.14 //你所使用内核的目录
PWD := $(shell pwd)
CC := arm-linux-gcc
HOSTCC := gcc
export CC HOSTCC
default:
   $(MAKE) -C $(KERNELDIR) M=$(PWD) modules
endif
clean:
   rm -rf *.o *.ko
阅读(2454) | 评论(0) | 转发(0) |
0

上一篇:驱动的makefile

下一篇:Helloworld

给主人留下些什么吧!~~