diff options
author | Eelco Dolstra <e.dolstra@tudelft.nl> | 2011-02-09T12·48+0000 |
---|---|---|
committer | Eelco Dolstra <e.dolstra@tudelft.nl> | 2011-02-09T12·48+0000 |
commit | 3087b3f7513ce713e0b759f63b9a4e9142e46f82 (patch) | |
tree | ef9c92ef186a8336dc8d293f37052247a008cd06 /make/examples/not-so-simple-header/default.nix | |
parent | eb94581d399b8d0945b883b14c4a892fdab95dfc (diff) |
* Obsolete.
Diffstat (limited to 'make/examples/not-so-simple-header/default.nix')
-rw-r--r-- | make/examples/not-so-simple-header/default.nix | 14 |
1 files changed, 0 insertions, 14 deletions
diff --git a/make/examples/not-so-simple-header/default.nix b/make/examples/not-so-simple-header/default.nix deleted file mode 100644 index 61ded57c82bb..000000000000 --- a/make/examples/not-so-simple-header/default.nix +++ /dev/null @@ -1,14 +0,0 @@ -let { - - inherit (import ../../lib) compileC link; - - hello = link {programName = "hello"; objects = compileC { - main = ./foo/hello.c; - localIncludes = [ - [./foo/fnord/indirect.h "fnord/indirect.h"] - [./bar/hello.h "fnord/../../bar/hello.h"] - ]; - };}; - - body = [hello]; -} |