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

Makefile

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

Click here to get the file

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

ファイルのコンテンツ

# 
# $Id: Makefile,v 1.3 2006/05/16 09:33:15 yamamoto Exp yamamoto $
# 

TARGET = exsh-1

SRCS = $(TARGET).c
OBJS = $(TARGET).o

all:: $(TARGET)

$(TARGET):: $(OBJS)

test:: all
	./$(TARGET)

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

########################################################################

test-null:: all
	./$(TARGET) -d < /dev/null

test-pipe:: all
	echo ls | ./$(TARGET) -d