diff options
author | Eelco Dolstra <e.dolstra@tudelft.nl> | 2005-05-02T15·25+0000 |
---|---|---|
committer | Eelco Dolstra <e.dolstra@tudelft.nl> | 2005-05-02T15·25+0000 |
commit | 36fb29f8f0317144a0074d7b6689912a4dc40325 (patch) | |
tree | 026fb03a97ca8b40a04ab38fa29759dbb0a9081e /make/examples/simple-header | |
parent | 02f2da01426b338c75051397dcbdcb0c75913670 (diff) |
* Merge remaining stuff from the nix-make branch.
* Add support for the creation of shared libraries to `compileC', `link', and `makeLibrary'. * Enable the ATerm library to be made into a shared library.
Diffstat (limited to 'make/examples/simple-header')
-rw-r--r-- | make/examples/simple-header/default.nix | 11 | ||||
-rw-r--r-- | make/examples/simple-header/hello.c | 9 | ||||
-rw-r--r-- | make/examples/simple-header/hello.h | 1 |
3 files changed, 21 insertions, 0 deletions
diff --git a/make/examples/simple-header/default.nix b/make/examples/simple-header/default.nix new file mode 100644 index 000000000000..e943471aaa4c --- /dev/null +++ b/make/examples/simple-header/default.nix @@ -0,0 +1,11 @@ +let { + + inherit (import ../../lib) compileC link; + + hello = link {objects = compileC { + main = ./hello.c; + localIncludes = [ [./hello.h "hello.h"] ]; + };}; + + body = [hello]; +} diff --git a/make/examples/simple-header/hello.c b/make/examples/simple-header/hello.c new file mode 100644 index 000000000000..15f1ac714e10 --- /dev/null +++ b/make/examples/simple-header/hello.c @@ -0,0 +1,9 @@ +#include <stdio.h> + +#include "hello.h" + +int main(int argc, char * * argv) +{ + printf("Hello " WHAT "\n"); + return 0; +} diff --git a/make/examples/simple-header/hello.h b/make/examples/simple-header/hello.h new file mode 100644 index 000000000000..4595fad98d43 --- /dev/null +++ b/make/examples/simple-header/hello.h @@ -0,0 +1 @@ +#define WHAT "World" |