diff --git a/Samples/HelloWorld/Makefile b/Samples/HelloWorld/Makefile index 850c74b3f0..52e3a5729c 100644 --- a/Samples/HelloWorld/Makefile +++ b/Samples/HelloWorld/Makefile @@ -1,25 +1,26 @@ # path to RETRO68 RETRO68=../../../Retro68-build/toolchain -PREFIX=$(RETRO68)/m68k-unknown-elf -CC=$(RETRO68)/bin/m68k-unknown-elf-gcc -CXX=$(RETRO68)/bin/m68k-unknown-elf-g++ +PREFIX=$(RETRO68)/m68k-apple-macos +CC=$(RETRO68)/bin/m68k-apple-macos-gcc +CXX=$(RETRO68)/bin/m68k-apple-macos-g++ REZ=$(RETRO68)/bin/Rez LDFLAGS=-lRetroConsole RINCLUDES=$(PREFIX)/RIncludes REZFLAGS=-I$(RINCLUDES) -HelloWorld.bin HelloWorld.APPL HelloWorld.dsk: HelloWorld.flt +HelloWorld.bin HelloWorld.APPL HelloWorld.dsk: HelloWorld.code.bin $(REZ) $(REZFLAGS) \ - -DFLT_FILE_NAME="\"HelloWorld.flt\"" "$(RINCLUDES)/Retro68APPL.r" \ + --copy "HelloWorld.code.bin" \ + "$(RINCLUDES)/Retro68APPL.r" \ -t "APPL" -c "????" \ -o HelloWorld.bin --cc HelloWorld.APPL --cc HelloWorld.dsk -HelloWorld.flt: hello.o +HelloWorld.code.bin: hello.o $(CXX) $< -o $@ $(LDFLAGS) # C++ used for linking because RetroConsole needs it .PHONY: clean clean: - rm -f HelloWorld.bin HelloWorld.APPL HelloWorld.dsk HelloWorld.flt HelloWorld.flt.gdb hello.o + rm -f HelloWorld.bin HelloWorld.APPL HelloWorld.dsk HelloWorld.code.bin HelloWorld.code.bin.gdb hello.o