2014年9月19日金曜日

開発環境

Head First C ―頭とからだで覚えるCの基本(David Griffiths (著)、Dawn Griffiths (著) 中田 秀基(監訳)(翻訳)、木下 哲也 (翻訳)、オライリージャパン)の9章(プロセスとシステムサービス: 限界を超える)、コードマグネット(p.399)を解いてみる。

その他参考書籍

コードマグネット(p.399)

コード(BBEdit, Emacs)

sample399.c

#include <stdio.h>
#include <stdlib.h>
#include <time.h>

char* now()
{
  time_t t;
  time (&t);
  return asctime(localtime (&t));
}

int main(int argc, char *argv[])
{
  char comment[80];
  char cmd[120];

  fgets(comment, 80, stdin);
  sprintf(cmd, "echo '%s %s' >> reports.log", comment, now());
  system(cmd);

  return (0);
}

Makefile

CC=cc
CFLAGS=-g -Wall
SRC=sample399.c
OBJ=sample399.o

all: sample399

sample399: $(OBJ)
 $(CC) $(CFLAGS) $(OBJ) -o sample399

sample399.o: sample399.c
 $(CC) $(CFLAGS) -c sample399.c -o sample399.o

clear:
 rm -rf sample399 $(OBJ)

入出力結果(Terminal)

$ make
cc -g -Wall -c sample399.c -o sample399.o
cc -g -Wall sample399.o -o sample399
$ ./sample399
First
$ ./sample399
Second
$ cat reports.log 
First
 Fri Sep 19 12:15:44 2014

Second
 Fri Sep 19 12:15:48 2014

$ 

0 コメント:

コメントを投稿