diff options
author | Eelco Dolstra <e.dolstra@tudelft.nl> | 2005-08-14T14·00+0000 |
---|---|---|
committer | Eelco Dolstra <e.dolstra@tudelft.nl> | 2005-08-14T14·00+0000 |
commit | e1a6fb787059848c815a8154da23b7da794c6231 (patch) | |
tree | 84ca9576a1abbc27c35f26b137628f5b5c000fc2 /make/lib/compile-c.sh | |
parent | 08c53923dba9c7fe6c2676be862744dc1f90f660 (diff) |
* `dependencyClosure' now allows a search path, e.g.,
dependencyClosure { ... searchPath = [ ../foo ../bar ]; ... } * Primop `dirOf' to return the directory part of a path (e.g., dirOf /a/b/c == /a/b). * Primop `relativise' (according to Webster that's a real word!) that given paths A and B returns a string representing path B relative path to A; e.g., relativise /a/b/c a/b/x/y => "../x/y".
Diffstat (limited to 'make/lib/compile-c.sh')
-rw-r--r-- | make/lib/compile-c.sh | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/make/lib/compile-c.sh b/make/lib/compile-c.sh index 04d2595def24..3558dd89ead4 100644 --- a/make/lib/compile-c.sh +++ b/make/lib/compile-c.sh @@ -70,5 +70,4 @@ fi mkdir $out test "$prefix" && cd $prefix -ls -l gcc -Wall $cFlags -c $mainName -o $out/$mainName.o |