-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Add {doc,misc,test,bench,experimental}/Makefile * sigscheme/Makefile.am - (SUBDIRS): Add doc, misc, test, bench, experimental - (EXTRA_DIST): Add TODO, autogen.sh, compare-scm.sh, runbench.sh, runtest.sh, runtest-tail-rec.sh, slib.scm * sigscheme/doc/Makefile.am * sigscheme/test/Makefile.am * sigscheme/bench/Makefile.am * sigscheme/misc/Makefile.am - New file - (EXTRA_DIST): New variable * sigscheme/experimental/Makefile.am - New file - (EXTRA_DIST, SUBDIRS): New variable with empty value * sigscheme/TODO - Update
- Loading branch information
yamaken
committed
Apr 2, 2006
1 parent
68d68f7
commit 4d38040
Showing
8 changed files
with
85 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1,7 @@ | ||
SUBDIRS = m4 tools src test-c | ||
SUBDIRS = doc m4 tools misc src test test-c bench experimental | ||
EXTRA_DIST = \ | ||
TODO autogen.sh \ | ||
compare-scm.sh runbench.sh runtest.sh runtest-tail-rec.sh | ||
|
||
# FIXME: move to appropriate directory | ||
EXTRA_DIST += slib.scm |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
EXTRA_DIST = \ | ||
bench-arithint.scm \ | ||
bench-case.scm \ | ||
bench-cpstak.scm \ | ||
bench-fib.scm \ | ||
bench-let-loop.scm \ | ||
bench-loop.scm \ | ||
bench-mem.scm \ | ||
bench-rec.scm \ | ||
bench-tak.scm \ | ||
bench-takl.scm \ | ||
bench-takr.scm |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
EXTRA_DIST = design.txt spec.txt style.txt test-c.txt |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
SUBDIRS = | ||
EXTRA_DIST = |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
EXTRA_DIST = scm-obj-compact-gdbinit |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,55 @@ | ||
# Libraries | ||
EXTRA_DIST = unittest.scm unittest-bigloo.scm unittest-gauche.scm | ||
|
||
# Native tests of SigScheme | ||
EXTRA_DIST = \ | ||
test-apply.scm \ | ||
test-char-cmp.scm \ | ||
test-char.scm \ | ||
test-continuation.scm \ | ||
test-define.scm \ | ||
test-delay-force.scm \ | ||
test-enc-eucgeneric.scm \ | ||
test-enc-eucjp.scm \ | ||
test-enc-sjis.scm \ | ||
test-enc-utf8.scm \ | ||
test-equation.scm \ | ||
test-eval.scm \ | ||
test-exp.scm \ | ||
test-formatplus.scm \ | ||
test-list.scm \ | ||
test-map.scm \ | ||
test-num.scm \ | ||
test-quote.scm \ | ||
test-srfi1.scm \ | ||
test-srfi2.scm \ | ||
test-srfi28.scm \ | ||
test-srfi34-2.scm \ | ||
test-srfi34.scm \ | ||
test-srfi38.scm \ | ||
test-srfi48.scm \ | ||
test-srfi6.scm \ | ||
test-srfi60.scm \ | ||
test-srfi8.scm \ | ||
test-string-cmp.scm \ | ||
test-string.scm \ | ||
test-syntax.scm \ | ||
test-tail-rec.scm \ | ||
test-vector.scm | ||
|
||
# Imported foreign tests | ||
EXTRA_DIST = \ | ||
test-r4rs.scm \ | ||
bigloo-apply.scm \ | ||
bigloo-bchar.scm \ | ||
bigloo-bool.scm \ | ||
bigloo-case.scm \ | ||
bigloo-letrec.scm \ | ||
bigloo-list.scm \ | ||
bigloo-quote.scm \ | ||
bigloo-vector.scm \ | ||
gauche-euc-jp.scm \ | ||
gauche-primsyn.scm | ||
|
||
# FIXME: remove these files | ||
EXTRA_DIST += define.scm for-each.scm io.scm |