aboutsummaryrefslogtreecommitdiff
path: root/default.bld
blob: f3806ff0e2e76041e855292b9e6e606c7aeeaf00 (plain)
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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
/*
 * Copyright (C) 2007-2014 Xagasoft, All rights reserved.
 *
 * This file is part of the Xagasoft Build and is released under the
 * terms of the license contained in the file LICENSE.
 */

#
# default.bld for build mark 3.  This guy does it all, so watch out!
# :)
#

CXXFLAGS += "-fPIC -rdynamic";
LDFLAGS += "-fPIC -rdynamic -Wl,-export-dynamic";
CXXFLAGS += "-ggdb -W -Wall";

CC = CXX; // We actually want to use c++ to compile our c files.

if PREFIX == null then
{
    PREFIX = "/usr/local";
}

action "default"
{
    build: ["build", targets("plugins")];
}

action "man"
{
    build: targets("all");
}

action "clean"
{
    clean: "build";
}

action "docs"
{
    build: targets("docs");
}

action "install"
{
    build: targets("install");
}

action "devinstall"
{
    if "$(id -u)" != "0" then
    {
        error "You can only install as the root user, su then run this.";
    }
    install: targets("devinstall");
}

action "viminstall"
{
    if "$(id -u)" != "0" then
    {
        error "You can only install as the root user, su then run this.";
    }
    install: targets("viminstall");
}

target "build"
{
    input [files("src/*.y"), files("src/*.l"), files("src/*.cpp")];
    rule "exe";
    LDFLAGS += "-Llibbu++ -lbu++ -ldl";
    CXXFLAGS += "-Ilibbu++";
    CFLAGS = CXXFLAGS;
    tag "tools";
}

for IN in files("src/plugins/*.cpp") do
{
    target IN.replace("src/","").replace(".cpp", ".so")
    {
        input IN;
        rule "so";
        LDFLAGS += "-Llibbu++ -lbu++ -ldl";
        CXXFLAGS += "-Ilibbu++ -Isrc";
        tag "plugins";
    }
}

target "/usr/share/build"
{
    input "$(echo -n $PWD)/share";
    tag "devinstall";
    display "symlink";
    profile "install"
    {
        execute("ln -fsv \"${INPUT}\" \"${OUTPUT}\"");
    }
}

target "/usr/lib/build"
{
    input "$(echo -n $PWD)/plugins";
    tag "devinstall";
    display "symlink";
    profile "install"
    {
        execute("ln -fsv \"${INPUT}\" \"${OUTPUT}\"");
    }
}

for vimdir in [dirs("/usr/share/vim/vim*"),
    dirs("/usr/local/share/vim/vim*")] do
{
    for ftype in ["ftplugin/build.vim", "ftdetect/build.vim",
        "syntax/build.vim"] do
    {
        target vimdir + "/" + ftype
        {
            input "support/vim/" + ftype;
            tag "viminstall";
            display "install";
            profile "install"
            {
                DIR = OUTPUT.dirName();
                execute("mkdir -p ${DIR}");
                execute("cp -f ${INPUT} ${OUTPUT}");
            }
        }
    }
}

target PREFIX + "/bin/build"
{
    display "install";
    tag "install";
    profile "build"
    {
        if !exists("build") then
        {
            build: "build";
        }
        execute("install -T -s build ${OUTPUT}");
    }
}

for i in [files("share/autoinclude/*.bld"), files("share/include/*.bld")] do
{
    target PREFIX + "/share/build/" + i.replace("share/","")
    {
        display "install";
        tag "install";
        requires i;
        profile "build"
        {
            execute("install -T -D -m0466 ${i} ${OUTPUT}");
        }
    }
}

target "docs/build-manual.pdf"
{
    display "pdflatex";
    tag "docs";
    profile "build"
    {
        condition always;
        execute("mkdir -p docs/pdf");
        // You have to do this multiple times to get the TOC right.
        for j in range(1,3) do
        {
            notice "Pass ${j}...";
            execute("cd docs/pdf; pdflatex ../build-manual.tex > /dev/null");
        }
        execute("mv docs/pdf/build-manual.pdf docs");
        execute("rm -Rf docs/pdf");
    }
}

target "docs/html-single/build-manual.html"
{
    display "htlatex";
    tag "docs";
    profile "build"
    {
        condition always;
        execute("mkdir -p docs/html-single");
        execute("cd docs/html-single; htlatex ../build-manual.tex > /dev/null");
    }
    profile "clean"
    {
        execute("rm -Rf docs/html-single");
    }
}

target "docs/html-multi"
{
    display "htlatex";
    tag "docs";
    profile "build"
    {
        condition always;
        execute("mkdir -p docs/html-multi");
        execute("cd docs/html-multi; htlatex ../build-manual.tex \"html,3\" > /dev/null");
    }
    profile "clean"
    {
        execute("rm -Rf docs/html-multi");
    }
}