mirror of
https://git.sr.ht/~crc_/retroforth
synced 2024-11-16 19:48:56 +01:00
fix a path name issue in the Linux Makefile, remove a period from the text instructions on building under Linux
FossilOrigin-Name: 0d54214d2374369fae6b508b0ec4806c34d518e25ff7abf8c566c166db2737b2
This commit is contained in:
parent
4078510eee
commit
b361b557d7
3 changed files with 11 additions and 3 deletions
|
@ -66,7 +66,7 @@ bin/retro: io bin/retro-embedimage bin/retro-extend interfaces/image.c interface
|
|||
./bin/retro-extend rre.image interfaces/io/io_filesystem.forth interfaces/io/io_gopher.forth interfaces/io/io_floatingpoint.forth interfaces/io/io_unix_syscalls.forth interfaces/io/rng.forth interfaces/rre.forth
|
||||
./bin/retro-embedimage rre.image >interfaces/rre_image.c
|
||||
cd interfaces && $(CC) $(CFLAGS) $(LDFLAGS) -o ../bin/retro rre.c image-functions.o $(RREIO) $(LIBM)
|
||||
cd packages && ../bin/retro -f list
|
||||
cd package && ../bin/retro -f list
|
||||
./bin/retro-embedimage rre.image >interfaces/rre_image.c
|
||||
cd interfaces && $(CC) $(CFLAGS) $(LDFLAGS) -o ../bin/retro rre.c image-functions.o $(RREIO) $(LIBM)
|
||||
rm rre.image
|
||||
|
|
|
@ -109,7 +109,11 @@ you have a C compiler, headers, and make.
|
|||
|
||||
## Process
|
||||
|
||||
Run `make -f Makefile.linux`.
|
||||
Run:
|
||||
|
||||
```
|
||||
make -f Makefile.linux
|
||||
```
|
||||
|
||||
This will build the toolchain and then the main `retro`
|
||||
executable.
|
||||
|
|
|
@ -11,7 +11,11 @@ you have a C compiler, headers, and make.
|
|||
|
||||
## Process
|
||||
|
||||
Run `make -f Makefile.linux`.
|
||||
Run:
|
||||
|
||||
```
|
||||
make -f Makefile.linux
|
||||
```
|
||||
|
||||
This will build the toolchain and then the main `retro`
|
||||
executable.
|
||||
|
|
Loading…
Reference in a new issue