diff options
author | Ben Sima <ben@bsima.me> | 2019-09-02 21:42:55 -0700 |
---|---|---|
committer | Ben Sima <ben@bsima.me> | 2019-09-02 21:42:55 -0700 |
commit | 9af1370c102ff2873d8270a10c41cd7e87ecbfe1 (patch) | |
tree | d49161f0847af173d444bbd3f28bb3dfa9653d1f | |
parent | 828a6131231bca4b805ca2c4dca2e85b17508bcf (diff) |
[chip/make] put build artifacts in separate dirs
-rwxr-xr-x | chip/make | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -86,8 +86,9 @@ data App = App , entrypoint :: String } +-- | common build options. ghcopts :: String -ghcopts = "-odir bild/ -hidir bild/ -Wall" +ghcopts = "-odir bild/o -hidir bild/hi -Wall" -- | compile with ghc. apex :: App -> IO () |