2014年6月3日火曜日

開発環境

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

その他参考書籍

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

  1. cc -g -Wall -I./includes -c hfcal.c -o hfcal.o
  2. cc -g -Wall -I./includes -c elliptical.c -o elliptical.o
  3. ar -rcs ./libs/lihfcal.a hfcal.o
  4. cc -g -Wall -L./libs -lhfcal elliptical.o -o elliptical

確認。

Makefile

CC=cc
CFLAGS = -g -Wall
SRC=elliptical.c hfcal.c
OBJ=ellptical.o hfcal.o

all: elliptical

elliptical: elliptical.o hfcal.a
 $(CC) $(CFLAGS) -L./libs -lhfcal elliptical.o -o elliptical

elliptical.o: elliptical.c
 $(CC) $(CFLAGS) -I./includes -c elliptical.c -o elliptical.o

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

hfcal.o: hfcal.c
 $(CC) $(CFLAGS) -I./includes -c hfcal.c -o hfcal.o

clean:
 rm -rf elliptical

入出力結果(Terminal)

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

0 コメント:

コメントを投稿