diff options
author | Tharre <tharre3@gmail.com> | 2015-01-03 03:46:07 +0100 |
---|---|---|
committer | Tharre <tharre3@gmail.com> | 2015-01-03 03:49:30 +0100 |
commit | 05e19981beb0ee018e71450d78592cd0bc629d81 (patch) | |
tree | 0deb4c9c1af7f4f9d66818aa25b33e346349f39f /build.sh | |
parent | 74ec249cc047a5ea6ced84fb301de638f55c6e2c (diff) | |
download | redo-05e19981beb0ee018e71450d78592cd0bc629d81.tar.gz redo-05e19981beb0ee018e71450d78592cd0bc629d81.tar.xz redo-05e19981beb0ee018e71450d78592cd0bc629d81.zip |
Add support for local config files (config.local)
Diffstat (limited to 'build.sh')
-rwxr-xr-x | build.sh | 5 |
1 files changed, 5 insertions, 0 deletions
@@ -1,5 +1,10 @@ #!/bin/sh -ex +export SH_BUILD=1 + +if [ -f "./config.local" ]; then + . ./config.local +fi . out/config.sh $CC $CFLAGS -o out/util.o -c src/util.c $CC $CFLAGS -o out/build.o -c src/build.c |