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:
crc 2019-03-20 16:45:44 +00:00
parent 4078510eee
commit b361b557d7
3 changed files with 11 additions and 3 deletions

View file

@ -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

View file

@ -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.

View file

@ -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.