From 95c34ecd2778fa3a02d101a8155f90ae7a020ec9 Mon Sep 17 00:00:00 2001 From: Chris Pressey Date: Sun, 28 Jun 2015 22:30:19 +0100 Subject: [PATCH] Add build script and .gitignore. --- .gitignore | 5 +++++ build.sh | 7 +++++++ 2 files changed, 12 insertions(+) create mode 100644 .gitignore create mode 100755 build.sh diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..780d4a0 --- /dev/null +++ b/.gitignore @@ -0,0 +1,5 @@ +/a2tools +/a2ls +/a2in +/a2out +/a2rm diff --git a/build.sh b/build.sh new file mode 100755 index 0000000..e5226ae --- /dev/null +++ b/build.sh @@ -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