public
Description: A spreadsheet program for my own amusement.
Homepage: http://accesscom.com/~darius
Clone URL: git://github.com/darius/vicissicalc.git
commit  a43754529660cb500d0684b18c7dcdbb320caed4
tree    22f7a6233e5a5fa056c43e19aad456f97b1c5725
parent  bb432990d8a407315c7b5dae6d9bbb248bc3d65e
vicissicalc / build
100755 19 lines (14 sloc) 0.469 kb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
#!/bin/bash
 
# Build this project from Akefile using ake, first installing ake if
# necessary.
 
# You may want to configure CFLAGS yourself.
export CFLAGS='-lm -g2 -Wall -W'
 
# (Isn't there any Bash expression for "NOT -x ake"? I couldn't find any...)
if [ -x ake ]
then
echo -n # (An actual command seems syntactically required here)
else
    (curl 'http://github.com/darius/ake/tree/master%2Fake?raw=true' -o ake &&
     chmod +x ake) || exit 1
fi
 
./ake "$@"