about summary refs log tree commit diff
path: root/make/examples/not-so-simple-header-auto/default.nix
diff options
context:
space:
mode:
Diffstat (limited to 'make/examples/not-so-simple-header-auto/default.nix')
-rw-r--r--make/examples/not-so-simple-header-auto/default.nix13
1 files changed, 0 insertions, 13 deletions
diff --git a/make/examples/not-so-simple-header-auto/default.nix b/make/examples/not-so-simple-header-auto/default.nix
deleted file mode 100644
index 521af7e89fc4..000000000000
--- a/make/examples/not-so-simple-header-auto/default.nix
+++ /dev/null
@@ -1,13 +0,0 @@
-with import ../../lib;
-
-let {
-
-  hello = link {programName = "hello"; objects = compileC {
-    main = ./foo/hello.c;
-    localIncludes = "auto";
-  };};
-
-#  body = findIncludes {main = ./foo/hello.c;};
-
-  body = [hello];
-}