# RetroForth                                          http://www.retroforth.org
# -----------------------------------------------------------------------------

include ../../config

GLOBAL_COMMON = ../../*
SRC = retro.asm
OBJ = retro.o
EXE = rf

console: $(OBJ)
	ld $(OBJ) -o $(EXE)
	chmod +x $(EXE)

$(OBJ): $(SRC) $(GLOBAL_COMMON)
	$(NASM) $(NASM_ARGS) -o $(OBJ) $(SRC)

clean:
	rm -f $(OBJ) $(EXE)
