Created
April 18, 2013 07:50
-
-
Save creamidea/5410972 to your computer and use it in GitHub Desktop.
led makefile arm入门练习 交叉编译
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
obj-m=led.o | |
KERDIR=/opt/EmbedSky/linux-2.6.30.4 | |
CURDIR=$(shell pwd) | |
# 交叉编译 | |
CROSS_ARCH=ARCH=arm CROSS_COMPILE=arm-linux- | |
default: | |
# -C 转移目录 | |
$(MAKE) $(CROSS_ARCH) -C $(KERDIR) SUBDIRS=$(CURDIR) modules | |
clean: | |
$(MAKE) $(CROSS_ARCH) -C $(KERDIR) SUBDIRS=$(CURDIR) clean |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment