Add build script and .gitignore.

This commit is contained in:
Chris Pressey 2015-06-28 22:30:19 +01:00
parent 920c6800bc
commit 95c34ecd27
2 changed files with 12 additions and 0 deletions

5
.gitignore vendored Normal file
View File

@ -0,0 +1,5 @@
/a2tools
/a2ls
/a2in
/a2out
/a2rm

7
build.sh Executable file
View File

@ -0,0 +1,7 @@
#!/bin/sh
gcc a2tools.c -o a2tools
ln -s a2tools a2ls
ln -s a2tools a2in
ln -s a2tools a2out
ln -s a2tools a2rm