--- M6502/Makefile.PL 2007/07/30 17:32:41 29 +++ M6502/Makefile.PL 2007/07/30 17:56:13 30 @@ -24,11 +24,11 @@ sub MY::postamble { return <<'MAKE_FRAG'; -orao: $(INST_ARCHAUTODIR)/$(NAME).$(SO) - $(CC) -o orao perl.o $(INST_ARCHAUTODIR)/$(NAME).$(SO) `perl -MExtUtils::Embed -e ldopts` +emulator: $(INST_ARCHAUTODIR)/$(NAME).$(SO) + $(CC) -o emulator perl.o $(INST_ARCHAUTODIR)/$(NAME).$(SO) `perl -MExtUtils::Embed -e ldopts` -run: orao - ( ./orao 2>&1 ) | head -30 +run: emulator + ( ./emulator 2>&1 ) | head -30 MAKE_FRAG }