Skip to content

Commit 995e26b

Browse files
committed
Add the source code.
1 parent 2e8a7cc commit 995e26b

File tree

135 files changed

+129224
-0
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

135 files changed

+129224
-0
lines changed

GNUmakefile

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,12 @@ tut:
1111
for file in web/*.html; do sed -i -e s/fdoc/html/g ${file}; done
1212
rm web/*.html-e
1313

14+
15+
packages:
16+
for file in /Users/skaller/felix/src/packages/*.fdoc; do \
17+
env DYLD_LIBRARY_PATH=${LD_LIBRARY_PATH} flx_pretty --outdir=packages "$${file}"; \
18+
done
19+
1420
extract:
1521
flx_iscr embedc.fdoc
1622
flx_iscr corout.fdoc
@@ -26,3 +32,4 @@ deploy:
2632

2733
all: pretty extract test deploy
2834

35+
.PHONY: packages

index.html

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -46,6 +46,11 @@ <h1>Felix programming system.</h1>
4646
<h2>Tutorials</h2>
4747
The basic <a href=web/tutorial.html>Tutorials</a>
4848

49+
<h2>The Standard Library</h2>
50+
The <a href=packages/stdlib_toc>actual source code</a> of most
51+
of the Felix standard library (Felix code) and the run time library (C++ code).
52+
There may be some bits missing from the index.
53+
4954
<h2>New Articles</h2>
5055
<ol>
5156
<li><a href=web/embedc.html>Embedding C/C++</a>

0 commit comments

Comments
 (0)