Skip to content

Commit f7d0d92

Browse files
committed
Added comments regarding build system.
In the future, want to try and separate out the core Scheme code into a library.
1 parent 29d1cca commit f7d0d92

File tree

1 file changed

+6
-1
lines changed

1 file changed

+6
-1
lines changed

Makefile

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,11 @@
1-
husk: core.hs macro.hs numerical.hs parser.hs types.hs variables.hs
1+
# TODO: see http://en.wikibooks.org/wiki/Haskell/Packaging
2+
# for a proper haskell way to set this up.
3+
husk: shell.hs core.hs macro.hs numerical.hs parser.hs types.hs variables.hs
24
ghc --make -package parsec -fglasgow-exts -o huski shell.hs core.hs macro.hs numerical.hs parser.hs types.hs variables.hs
35

6+
#husk-lib: core.hs macro.hs numerical.hs parser.hs types.hs variables.hs
7+
# ghc --make -package parsec -fglasgow-exts -o huski shell.hs core.hs macro.hs numerical.hs parser.hs types.hs variables.hs
8+
49
# Run all unit tests
510
test: husk
611
# cd scm-unit-tests ; ../huski t-backquote.scm

0 commit comments

Comments
 (0)