2015年5月11日月曜日

開発環境

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

その他参考書籍

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

Makefile

hfcal.o: hfcal.c
 cc -I./includes -c hfcal.c -o hfcal.o

elliptical.o: elliptical.c
 cc -I./includes -c elliptical.c -o elliptical.o

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

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

入出力結果(Terminal)

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

0 コメント:

コメントを投稿