APP=./hi OBJS=hi.o .PHONY=all all: $(APP) $(APP): $(OBJS) ld -s -o $(APP) $(OBJS) hi.o: hi.s as -o hi.o hi.s clean: $(RM) $(APP) $(OBJS)