Linux C一个Autotools的最简单例子
1、准备: 需要工具autoscan aclocal autoheader automake autoconf make 等工具.2、测试程序编写: 建立目录:mkdir include src 编写程序:include/str.h#include <stdio.h>int str(char *string);编写程序:src/str.c#include "str.h"//print stringint str(char *string){ p...