# makefile 1

# make   ϸ ƹ͵ ȵ 
# make foo   Ұ

# for each  xxxxx.o target there must be a xxxxx.c dependency to build.

.c.o:	
	cc -c $< -I.

	
