rre: rename source file for embedded image

FossilOrigin-Name: abac23e7900c4a8f4ba114c71151b234295d5c0a1ae4eeb0bf475ca2399a3e4c
This commit is contained in:
crc 2019-01-04 05:10:10 +00:00
parent 8a08606aff
commit 764ba41e8b
4 changed files with 3 additions and 3 deletions

View file

@ -118,7 +118,7 @@ bin/retro: bin/retro-embedimage bin/retro-extend interfaces/image.c interfaces/r
./bin/retro-extend interfaces/io_floatingpoint.forth
./bin/retro-extend interfaces/io_unix_syscalls.forth
./bin/retro-extend interfaces/rre.forth
./bin/retro-embedimage >interfaces/rre_image_unix.c
./bin/retro-embedimage >interfaces/rre_image.c
mv cleanImage ngaImage
cd interfaces && $(CC) $(CFLAGS) $(LDFLAGS) -o ../bin/retro $(LIBM) io_filesystem.c io_gopher.c io_floatingpoint.c io_unix_syscalls.c rre.c

View file

@ -118,7 +118,7 @@ bin/retro: bin/retro-embedimage bin/retro-extend interfaces/image.c interfaces/r
./bin/retro-extend interfaces/io_floatingpoint.forth
./bin/retro-extend interfaces/io_unix_syscalls.forth
./bin/retro-extend interfaces/rre.forth
./bin/retro-embedimage >interfaces/rre_image_unix.c
./bin/retro-embedimage >interfaces/rre_image.c
mv cleanImage ngaImage
cd interfaces && $(CC) $(CFLAGS) -o ../bin/retro io_filesystem.c io_gopher.c io_floatingpoint.c io_unix_syscalls.c rre.c $(LDFLAGS) $(LIBM)

View file

@ -113,7 +113,7 @@ CELL memory[IMAGE_SIZE + 1]; /* The memory for the image */
data (converted to a .c file by an external tool).
---------------------------------------------------------- */
#include "rre_image_unix.c"
#include "rre_image.c"
/* ------------------------------------------------------------