摘要: 原文:http://blog.csdn.net/21aspnet/article/details/6724477automake/autoconf入门作为Linux下的程序开发人员,大家一定都遇到过Makefile,用make命令来编译自己写的程序确实是很方便。一般情况下,大家都是手工写一个简单Makefile,如果要想写出一个符合自由软件惯例的Makefile就不那么容易了。在本文中,将给大家介绍如何使用autoconf和automake两个工具来帮助我们自动地生成符合自由软件惯例的Makefile,这样就可以象常 见的GNU程序一样,只要使用“./configure”,“make”,“ma 阅读全文
posted @ 2012-05-08 20:20 Leo Forest 阅读(190) 评论(0) 推荐(0) 编辑
摘要: 用vim的朋友想发呆的时候试试吧:h! :help!:h 42:help 42:h holy-grail:help holy-grail 阅读全文
posted @ 2012-05-08 19:41 Leo Forest 阅读(548) 评论(0) 推荐(0) 编辑
摘要: display.h#ifndef _DISPLAY_H#define _DISPLAY_Hvoid display (int);#endifdisplay.c#include <stdio.h>#include "display.h" voiddisplay ( int n ){ if (0 == n) puts ("0"); else { printf ("%d\n", n--); display (n); } return ;} /* ----- end of function display ... 阅读全文
posted @ 2012-05-08 14:12 Leo Forest 阅读(217) 评论(0) 推荐(0) 编辑