We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 29d1cca commit f7d0d92Copy full SHA for f7d0d92
Makefile
@@ -1,6 +1,11 @@
1
-husk: core.hs macro.hs numerical.hs parser.hs types.hs variables.hs
+# 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
4
ghc --make -package parsec -fglasgow-exts -o huski shell.hs core.hs macro.hs numerical.hs parser.hs types.hs variables.hs
5
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
+
9
# Run all unit tests
10
test: husk
11
# cd scm-unit-tests ; ../huski t-backquote.scm
0 commit comments