BIN=rarun2
OBJ=main.o

all: ${OBJ}
	${CC} -o ${BIN} ${OBJ}

clean:
	rm -f ${BIN} ${OBJ}

.PHONY: all clean
