aboutsummaryrefslogtreecommitdiffstats
path: root/src/redo-ifcreate.c
diff options
context:
space:
mode:
authorTharre <tharre3@gmail.com>2014-11-17 15:48:23 +0100
committerTharre <tharre3@gmail.com>2014-11-17 15:48:23 +0100
commitc27027cd2eeebfa63c084e746c7da46c952fb255 (patch)
treefee98369607e9adea91914fb60b05e53a20c12ce /src/redo-ifcreate.c
parentdf9bc5b9d048c7ecb96838123e39d5bc7c23aa18 (diff)
downloadredo-c27027cd2eeebfa63c084e746c7da46c952fb255.tar.gz
redo-c27027cd2eeebfa63c084e746c7da46c952fb255.tar.xz
redo-c27027cd2eeebfa63c084e746c7da46c952fb255.zip
Merge all redo-*.c files into redo.c.
The resulting redo binary behaves differently if called with each respective redo-* name, and is symlinked to the different command names. This should reduce the memory footprint of a redo build, as the OS only needs to keep one copy of the redo code in memory.
Diffstat (limited to 'src/redo-ifcreate.c')
-rw-r--r--src/redo-ifcreate.c18
1 files changed, 0 insertions, 18 deletions
diff --git a/src/redo-ifcreate.c b/src/redo-ifcreate.c
deleted file mode 100644
index 77e51cc..0000000
--- a/src/redo-ifcreate.c
+++ /dev/null
@@ -1,18 +0,0 @@
-/* redo-ifcreate.c
- *
- * Copyright (c) 2014 Tharre
- *
- * This software may be modified and distributed under the terms
- * of the MIT license. See the LICENSE file for details.
- */
-
-#include <stddef.h>
-
-#include "build.h"
-
-int main(int argc, char *argv[]) {
- for (int i = 1; i < argc; ++i) {
- update_target(argv[i], 'e');
- add_dep(argv[i], NULL, 'e');
- }
-}