darcs patch: haskell98 should re-export Prelude and N... (and 4 more)
Thu Aug 13 19:26:59 PDT 2009 John Meacham <john@repetae.net> * haskell98 should re-export Prelude and Numeric Thu Aug 13 19:36:17 PDT 2009 John Meacham <john@repetae.net> * clean up documentation, rename all environment variable to have a consistent JHC_ prefix Mon Aug 17 16:10:29 PDT 2009 John Meacham <john@repetae.net> * clean up stats some Tue Aug 18 20:52:36 PDT 2009 John Meacham <john@repetae.net> * redo libraries such that only names from explicitly imported libraries are visible to the program being compiled. Tue Aug 18 21:10:30 PDT 2009 John Meacham <john@repetae.net> * add fix for compiling on MacOSX, thanks to Mark Wotton.
On 19/08/2009, at 2:12 PM, John Meacham wrote:
-manual: utils/stitch.prl src/FlagDump.mkd src/FlagOpts.mkd options.mkd - find . ! -wholename '*/examples/*' ! -wholename '*/_darcs/*' ! - wholename '*/drift_processed/*' ! -wholename '*/regress/*' \( - name '*.hs' -o -name '*.hsc' -o -name '*.mkd' -o -wholename '*/src/ data/rts/*.c' \) | xargs perl utils/stitch.prl > manual.mkd +manual: utils/stitch.prl src/FlagDump.mkd src/FlagOpts.mkd options.mkd docs/*.mkd + find . ! -wholename */jhc-*/* ! -wholename '*/examples/*' ! - wholename '*/_darcs/*' ! -wholename '*/drift_processed/*' ! - wholename '*/regress/*' \( -name '*.hs' -o -name '*.hsc' -o -name '*.mkd' -o -wholename '*/src/data/rts/*.c' \) | xargs perl utils/ stitch.prl > manual.mkd pandoc manual.mkd --toc -s -f markdown -t html -s -c manual.css -o $@.html
meant to mention, the use of -wholename restricts you to using GNU find. It's not totally critical to building, obviously, but it might be worth mentioning or working around. (Doesn't work on Mac OS X unless you've deliberately gnu-ified your system.) mark
On Tue, Aug 18, 2009 at 9:24 PM, Mark Wotton<mwotton@gmail.com> wrote:
- find . ! -wholename '*/examples/*' ! -wholename '*/_darcs/*' ! -wholename '*/drift_processed/*' ! -wholename '*/regress/*' \( -name '*.hs' -o -name '*.hsc' -o -name '*.mkd' -o -wholename '*/src/data/rts/*.c' \) | xargs perl utils/stitch.prl > manual.mkd
Most of this can be accomplished with judicious use of -prune. -- Taral <taralx@gmail.com> "Please let me know if there's any further trouble I can give you." -- Unknown
participants (3)
-
John Meacham -
Mark Wotton -
Taral