#
# makefile for hello
#

.SUFFIXES:
.SUFFIXES: .o .s .c

.c.o:
	c -c $*.c -o $*.o
	asm -p $*.o -o$*.o

all : hello

hello    : hello.c
	c hello.c -o hello

