all: hello
	
hello: object.c
	gcc object.c -o scalc

object.c: scalc.mas
	masc scalc.mas -c object.c
 
clean:
	rm -f object.c hello

