ここでは完全なメイクファイルの例:
メイクファイル
TARGET = prog
$(TARGET): main.o lib.a
gcc $^ -o $@
main.o: main.c
gcc -c $< -o $@
lib.a: lib1.o lib2.o
ar rcs $@ $^
lib1.o: lib1.c lib1.h
gcc -c -o $@ $<
lib2.o: lib2.c lib2.h
gcc -c -o $@ $<
clean:
rm -f *.o *.a $(TARGET)
makefileの説明:
target: prerequisites
-ルールヘッド
$@
-ターゲットを意味します
$^
-すべての前提条件を意味します
$<
-最初の前提条件のみを意味します
ar
-アーカイブから作成、変更、抽出するLinuxツール。詳細については、manページを参照してください。。。この場合のオプションの意味は次のとおりです。
r
-アーカイブ内に存在するファイルを置き換えます
c
-まだ存在しない場合は、アーカイブを作成します
s
-オブジェクトファイルインデックスをアーカイブに作成する
結論:Linuxでの静的ライブラリは、オブジェクトファイルのアーカイブにすぎません。
libを使用したmain.c
#include <stdio.h>
#include "lib.h"
int main ( void )
{
fun1(10);
fun2(10);
return 0;
}
lib.h libsメインヘッダー
#ifndef LIB_H_INCLUDED
#define LIB_H_INCLUDED
#include "lib1.h"
#include "lib2.h"
#endif
lib1.c 最初のlibソース
#include "lib1.h"
#include <stdio.h>
void fun1 ( int x )
{
printf("%i\n",x);
}
lib1.h 対応するヘッダー
#ifndef LIB1_H_INCLUDED
#define LIB1_H_INCLUDED
#ifdef __cplusplus
extern “C” {
#endif
void fun1 ( int x );
#ifdef __cplusplus
}
#endif
#endif /* LIB1_H_INCLUDED */
lib2.c 2番目のlibソース
#include "lib2.h"
#include <stdio.h>
void fun2 ( int x )
{
printf("%i\n",2*x);
}
lib2.h 対応するヘッダー
#ifndef LIB2_H_INCLUDED
#define LIB2_H_INCLUDED
#ifdef __cplusplus
extern “C” {
#endif
void fun2 ( int x );
#ifdef __cplusplus
}
#endif
#endif /* LIB2_H_INCLUDED */