aboutsummaryrefslogtreecommitdiffstats
path: root/src/redo.c
blob: 69f9ade85fb2b69291f535acb56e40d5097e718b (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
#define _XOPEN_SOURCE 600
#include <stdio.h>
#include <stdlib.h>
#include <sys/stat.h>
#include <sys/types.h>
#include <unistd.h>

#include "build.h"
#include "util.h"
#include "dbg.h"


int main(int argc, char *argv[]) {
    /* create .redo directory */
    if (mkdir(".redo/deps", 0744))
        if (errno != EEXIST) /* TODO: unsafe, dir could be a file or broken symlink */
            fatal(ERRM_MKDIR, ".redo");

    /* set REDO_ROOT */
    char *cwd = getcwd(NULL, 0);
    if (!cwd)
        fatal("redo: failed to obtain cwd");

    if (setenv("REDO_ROOT", cwd, 0))
        fatal("redo: failed to setenv %s to %s", "REDO_ROOT", cwd);

    free(cwd);

    if (argc < 2) {
        build_target("all");
    } else {
        int i;
        for (i = 1; i < argc; ++i) {
            build_target(argv[i]);
        }
    }
}