Personal tools
You are here: Home オペレーティングシステム論 演習 2006年度 第1回 Makefile
Document Actions

Makefile

by 管理者 last modified 2006-07-27 01:43

Click here to get the file

Size 1 kB - File type text/x-makefile

File contents

# 
# $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