From de3a9f3eda239e3284ae1e91210833d0541c04fd Mon Sep 17 00:00:00 2001 From: chaoskagami Date: Wed, 20 Aug 2014 12:15:09 -0400 Subject: [PATCH] Misc fixes. --- Distrib/bin/.keep | 0 Tools/ahx2wav/make.sh | 11 ----------- build.sh | 2 +- 3 files changed, 1 insertion(+), 12 deletions(-) create mode 100644 Distrib/bin/.keep delete mode 100755 Tools/ahx2wav/make.sh diff --git a/Distrib/bin/.keep b/Distrib/bin/.keep new file mode 100644 index 0000000..e69de29 diff --git a/Tools/ahx2wav/make.sh b/Tools/ahx2wav/make.sh deleted file mode 100755 index fc19318..0000000 --- a/Tools/ahx2wav/make.sh +++ /dev/null @@ -1,11 +0,0 @@ -#!/bin/bash - -F=$1 - -if [ "$F" == "ahx2wav" ]; then - gcc -c ahx2wav.c - gcc -c getopt.c - gcc -lm getopt.o ahx2wav.o -o ahx2wav -elif [ "$F" == "clean" ]; then - rm getopt.o ahx2wav.o ahx2wav -fi diff --git a/build.sh b/build.sh index 32be8d2..a820811 100755 --- a/build.sh +++ b/build.sh @@ -35,7 +35,7 @@ if [ "$F" == "build" ]; then cd ahx2wav chmod +x make.sh - ./make.sh ahx2wav + gcc -lm -o ahx2wav ahx2wav.c getopt.c if [ ! -e ahx2wav ]; then exit 1 -- 2.39.5