Skip to content

Commit

Permalink
Typo
Browse files Browse the repository at this point in the history
  • Loading branch information
egallesio committed Oct 14, 2024
1 parent 1fc8d40 commit d7aaacc
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 3 deletions.
2 changes: 1 addition & 1 deletion INSTALL-cross-compile.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ of `configure --help`.
***However:***

* You *need* a STklos binary in order to compile STklos. When not
cross-copiling,
cross-compiling,
- the binary is generated as `src/stklos`
- the build proceeds using `src/stklos` as the STklos binary that
can be used to compile `.stk` files
Expand Down
7 changes: 5 additions & 2 deletions lib/scheme/Makefile.in
Original file line number Diff line number Diff line change
Expand Up @@ -875,8 +875,11 @@ STKLOS_BINARY ?= ../../src/stklos

stream.ostk: ../streams/primitive.ostk ../streams/derived.ostk

../streams/derived.ostk ../streams/primitive.ostk:
(cd ../streams && $(MAKE) $@)
../streams/derived.ostk:
(cd ../streams && $(MAKE) derived.ostk)

../streams/primitive.ostk:
(cd ../streams && $(MAKE) primitive.ostk)

set.ostk: ../srfi/69.ostk comparator.ostk

Expand Down

0 comments on commit d7aaacc

Please sign in to comment.