2014年11月7日金曜日

開発環境

Head First C ―頭とからだで覚えるCの基本(David Griffiths (著)、Dawn Griffiths (著) 中田 秀基(監訳)(翻訳)、木下 哲也 (翻訳)、オライリージャパン)の8章(スタティックライブラリとダイナミックライブラリ: ホットスワップ可能なコード)、自分で考えてみよう(p.367)を解いてみる。

その他参考書籍

自分で考えてみよう(p.367)

Makefile

# 1
hfcal.o: hfcal.c
 cc -g -Wall -c -I./includes hfcal.c -o hfcal.o

# 2
elliptical.o: elliptical.c
 cc -g -Wall -c -I./includes elliptical.c -o elliptical.o

# 3
libhfcal.a: hfcal.o
 ar -rcs ./libs/libhfcal.a hfcal.o

# 4
elliptical: elliptical.o libhfcal.a
 cc -g -Wall elliptical.o -L./libs -lhfcal -o elliptical

入出力結果(Terminal)

$ make elliptical
cc -g -Wall -c -I./includes elliptical.c -o elliptical.o
cc -g -Wall -c -I./includes hfcal.c -o hfcal.o
ar -rcs ./libs/libhfcal.a hfcal.o
cc -g -Wall elliptical.o -L./libs -lhfcal -o elliptical
$ ./elliptical 
体重:115.20ポンド
距離:11.30マイル
消費カロリー:1028.39カロリー
$

0 コメント:

コメントを投稿