Skip to content

Commit

Permalink
challengerIII: build the tools when needed
Browse files Browse the repository at this point in the history
  • Loading branch information
EtchedPixels committed Mar 16, 2024
1 parent fff80a6 commit d1bbc19
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion Kernel/platform/platform-challengeriii/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,13 @@ loader-z80.bin: loader-z80.S

IMAGES = $(FUZIX_ROOT)/Images/$(TARGET)

diskimage:
../../tools/makeosihd: ../../tools/makeosihd.c
gcc -Wall -pedantic ../../tools/makeosihd.c -o ../../tools/makeosihd

../../tools/osifloppy: ../../tools/osifloppy.c
gcc -Wall -pedantic ../../tools/osifloppy.c -o ../../tools/osifloppy

diskimage: ../../tools/osifloppy ../../tools/makeosihd
# Build the bootable floppy image
../../tools/osifloppy 8 loader-6502.bin loader-z80.bin ../../fuzix.bin >$(IMAGES)/boot8
../../tools/osifloppy 5 loader-6502.bin loader-z80.bin ../../fuzix.bin >$(IMAGES)/boot5
Expand Down

0 comments on commit d1bbc19

Please sign in to comment.