Rename bcm43xx -> b43
[b43-tools.git] / assembler / bcm43xx-asm
diff --git a/assembler/bcm43xx-asm b/assembler/bcm43xx-asm
deleted file mode 100755 (executable)
index de730c7..0000000
+++ /dev/null
@@ -1,27 +0,0 @@
-#!/bin/sh
-
-installed=0
-
-if [ -z "$BCM43xx_ASM" ]; then
-       if [ $installed -eq 0 ] && [ -x "./bcm43xx-asm.bin" ]; then
-               BCM43xx_ASM="./bcm43xx-asm.bin"
-       else
-               BCM43xx_ASM="bcm43xx-asm.bin"
-       fi
-fi
-
-if [ -z "$CPP" ]; then
-       CPP="cpp"
-fi
-
-if [ $# -lt 2 ]; then
-       $BCM43xx_ASM --help
-       exit 1
-fi
-
-infile="$1"
-shift
-outfile="$1"
-shift
-
-cat "$infile" | $CPP -traditional-cpp | $BCM43xx_ASM "-" "$outfile" $@