2019-02-19 14:28:54 +01:00
|
|
|
all: native386 clean
|
|
|
|
|
|
|
|
native386:
|
|
|
|
cp ../../ngaImage nativeImage
|
2019-04-16 20:16:33 +02:00
|
|
|
../../bin/retro-extend nativeImage x86/common.forth x86/cmos-rtc.forth x86/serial.forth x86/display.forth x86/ata.forth x86/listener.forth x86/Block-Editor.forth
|
2019-02-19 14:28:54 +01:00
|
|
|
../../bin/retro-embedimage nativeImage >image.c
|
2019-02-22 15:26:47 +01:00
|
|
|
cc -fno-pie -Wall -m32 -DTARGET_X86 -c retro.c -o retro_qwerty.o
|
|
|
|
cc -fno-pie -Wall -m32 -DTARGET_X86 -DUSE_DVORAK -c retro.c -o retro_dvorak.o
|
2019-02-19 14:28:54 +01:00
|
|
|
nasm -f elf 386.s
|
2019-02-19 22:24:31 +01:00
|
|
|
ld -nostdlib -m elf_i386 -n -T 386.ld 386.o retro_qwerty.o -o bin/rnf_qwerty.386
|
|
|
|
ld -nostdlib -m elf_i386 -n -T 386.ld 386.o retro_dvorak.o -o bin/rnf_dvorak.386
|
2018-01-30 18:25:44 +01:00
|
|
|
|
|
|
|
clean:
|
2019-01-04 04:29:59 +01:00
|
|
|
rm -f *.o
|
2018-01-30 18:25:44 +01:00
|
|
|
# rm bin/rf.*
|