Added build script. Moved libraries from src to lib
This commit is contained in:
parent
351516d54c
commit
93948910e3
6 changed files with 13 additions and 0 deletions
9
build.sh
Normal file
9
build.sh
Normal file
|
@ -0,0 +1,9 @@
|
|||
#!/bin/bash
|
||||
|
||||
EXEC=bunc
|
||||
|
||||
echo -e "#!/bin/bash\n" > ${EXEC}
|
||||
|
||||
for file in $(find src/ -type f); do
|
||||
awk '!/^ *#/ && NF' ${file} >> ${EXEC}
|
||||
done
|
4
test/bui
Normal file
4
test/bui
Normal file
|
@ -0,0 +1,4 @@
|
|||
echorm ${EXEC}
|
||||
-e "#!/bin/bash\n" > ${EXEC}
|
||||
1Oautomatically escape when changing lines vim
|
||||
2
|
Reference in a new issue