Changes by: Aleksey Nogin (nogin at cs.caltech.edu)
Date: 2006-10-10 14:57:48 -0700 (Tue, 10 Oct 2006)
Revision: 9587
Log message:
Adding VerboseCheckLib
Changes | Path |
+13 -2 | omake-branches/0.9.8.x/lib/configure/Configure.om |
Changes by: Aleksey Nogin (nogin at cs.caltech.edu)
Date: 2006-10-10 14:59:57 -0700 (Tue, 10 Oct 2006)
Revision: 9588
Log message:
Previous commit had a typo, fixing.
Changes | Path |
+1 -1 | omake-branches/0.9.8.x/lib/configure/Configure.om |
Changes by: Aleksey Nogin (nogin at cs.caltech.edu)
Date: 2006-10-11 09:37:38 -0700 (Wed, 11 Oct 2006)
Revision: 9594
Log message:
(Bug 326) Use a static test to check whether snprintf is available.
Changes by: Aleksey Nogin (nogin at cs.caltech.edu)
Date: 2006-10-11 15:06:46 -0700 (Wed, 11 Oct 2006)
Revision: 9596
Log message:
Be prepared that "latex -help" might fail (some versions of TeX do not support
the -help option).
Changes | Path |
+1 -1 | omake-branches/0.9.8.x/lib/build/LaTeX.om |
Changes by: Aleksey Nogin (nogin at cs.caltech.edu)
Date: 2006-10-11 15:42:01 -0700 (Wed, 11 Oct 2006)
Revision: 9597
Log message:
Changed the CProgram function to consider LIBS to be the actual library files
(_without_ the extension) that need to be linked in. Also added some hackish
code (not fully tested) for backward compatilility:
- move all strings that start with a "-" from LIBS into LDFLAGS
- tolerate if a file in LIBS already contains an $(EXT_LIB) suffix.
Changes | Path |
+1 -4 | omake-branches/0.9.8.x/doc/src/omake-build-examples.tex |
+21 -4 | omake-branches/0.9.8.x/lib/build/C.om |
Changes by: Aleksey Nogin (nogin at cs.caltech.edu)
Date: 2006-10-11 16:08:35 -0700 (Wed, 11 Oct 2006)
Revision: 9600
Log message:
Restored the convention that the empty file list in awk(), fsubst(), etc means
"stdin", not "do nothing".
Changes | Path |
+9 -3 | omake-branches/0.9.8.x/src/builtin/omake_builtin_io_fun.ml |
Changes by: Aleksey Nogin (nogin at cs.caltech.edu)
Date: 2006-10-11 16:48:51 -0700 (Wed, 11 Oct 2006)
Revision: 9601
Log message:
- Further fixed the "no file argument means stdin" convention for awk, fsubst,
etc.
- Fixed the documentation generation.
- Fixed a few problems with the documentation.
- Regenerated the documentation.
Changes by: Aleksey Nogin (nogin at cs.caltech.edu)
Date: 2006-10-11 17:03:15 -0700 (Wed, 11 Oct 2006)
Revision: 9602
Log message:
Apparently, there exist versions of ln that understand "ln -f -s", but not "ln -sf"!
Changes | Path |
+1 -1 | omake-branches/0.9.8.x/mk/make_gen |
Changes by: Aleksey Nogin (nogin at cs.caltech.edu)
Date: 2006-10-12 12:09:51 -0700 (Thu, 12 Oct 2006)
Revision: 9604
Log message:
Reverting the rev 9602 - it was not a good idea.
Changes | Path |
+1 -1 | omake-branches/0.9.8.x/mk/make_gen |
Changes by: Aleksey Nogin (nogin at cs.caltech.edu)
Date: 2006-10-18 09:42:30 -0700 (Wed, 18 Oct 2006)
Revision: 9608
Log message:
Documentation update. The biggest change is that doc/src/omake-shell.tex used
to be orphaned, but now it is included in documentation.
Changes by: Aleksey Nogin (nogin at cs.caltech.edu)
Date: 2006-10-18 09:48:51 -0700 (Wed, 18 Oct 2006)
Revision: 9609
Log message:
Minor documentation update.
Changes by: Aleksey Nogin (nogin at cs.caltech.edu)
Date: 2006-10-18 10:30:10 -0700 (Wed, 18 Oct 2006)
Revision: 9610
Log message:
Documentation update --- more consistenly use "Section~\ref{...}" instead of
just \ref{...}.
Changes by: Aleksey Nogin (nogin at cs.caltech.edu)
Date: 2006-10-19 09:39:16 -0700 (Thu, 19 Oct 2006)
Revision: 9611
Log message:
(Bug 602) Implemented Shell.ln-or-cp that tries to create a symlink, or a hard
link, or a copy. Got rid of the bogus symlink function in build/Common.om,
using cp-or-ln instead.
Changes by: Aleksey Nogin (nogin at cs.caltech.edu)
Date: 2006-10-20 16:23:33 -0700 (Fri, 20 Oct 2006)
Revision: 9612
Log message:
Regenerated the cdocumentation.
Changes by: Aleksey Nogin (nogin at cs.caltech.edu)
Date: 2006-10-20 16:41:07 -0700 (Fri, 20 Oct 2006)
Revision: 9613
Log message:
(Bug 599 workaround - use $(string ...) instead of $"..." in
PREFIXED_OCAMLPACKS).
Changes | Path |
+1 -1 | omake-branches/0.9.8.x/lib/build/OCaml.om |
Changes by: Jason Hickey (jyh at cs.caltech.edu)
Date: 2006-10-27 17:01:33 -0700 (Fri, 27 Oct 2006)
Revision: 9636
Log message:
Minor updates while working on the website.
Changes by: Jason Hickey (jyh at cs.caltech.edu)
Date: 2006-10-27 17:14:08 -0700 (Fri, 27 Oct 2006)
Revision: 9638
Log message:
Removed a bogus comma. Aleksey may wish to test his code
before committing:)
Changes | Path |
+1 -1 | omake-branches/0.9.8.x/lib/build/OCaml.om |
Changes by: Jason Hickey (jyh at cs.caltech.edu)
Date: 2006-10-28 19:56:39 -0700 (Sat, 28 Oct 2006)
Revision: 9645
Log message:
Added $(html-escaped ...)
Changes | Path |
+77 -32 | omake-branches/0.9.8.x/src/builtin/omake_builtin_base.ml |
Changes by: Jason Hickey (jyh at cs.caltech.edu)
Date: 2006-10-28 23:52:59 -0700 (Sat, 28 Oct 2006)
Revision: 9647
Log message:
Added "F" for "files-only" glob option.
Changes | Path |
+1 -0 | omake-branches/0.9.8.x/src/build/omake_rule.ml |
+1 -0 | omake-branches/0.9.8.x/src/builtin/omake_builtin_file.ml |