码迷,mamicode.com
首页 > 其他好文 > 详细

Makefile宏定义

时间:2014-12-26 13:01:16      阅读:215      评论:0      收藏:0      [点我收藏+]

标签:

起因:阅读linux0.11代码时,发现RAMDISK这个宏定义在makefile中。以前没有接触过这种用法,练习一下。


目的:在Makefile中定义的宏,在C语言代码里面使用。


Makefile的内容:


CC=gcc


RAMDISK = -DRAMDISK=512


all:
$(CC) $(RAMDISK)  hello.c
clean:
rm -f a.out
-------------------------------------------------------------------
hell.c


#include <stdio.h>


int main(void)
{
#ifdef RAMDISK

printf("RAMDISK = %d\n", RAMDISK);

#else
printf("NO RAMDISK\n");
#endif
return 0;


总结,其实就是给gcc添加参数

Makefile宏定义

标签:

原文地址:http://blog.csdn.net/yinming4u/article/details/42169961

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!