パーソナルツール
現在の場所: ホーム オペレーティングシステム論 演習 2006年度 第3回 Makefile
文書操作

Makefile

作成者 管理者 最終変更日時 2006年07月27日 02時05分

Click here to get the file

サイズ 1 kB - File type text/x-makefile

ファイルのコンテンツ

# 
# $Id: Makefile,v 1.2 2006/05/09 12:05:13 yamamoto Exp yamamoto $
# 

TARGETS = $(TARGET1)

OBJS = $(OBJS1)

TARGET1 = exsh-3
SRCS1 = $(TARGET1).c
OBJS1 = $(TARGET1).o

all:: $(TARGETS)

$(TARGET1):: $(OBJS1)

test:: all
	./$(TARGET1)

clean::
	rm -f $(TARGETS) $(OBJS) a.out *~