Rename bcm43xx -> b43
[b43-tools.git] / disassembler / Makefile
index c58e3f92952fd7edd78674c71da5d1c3b382c099..39392222dceb0f2f6d69700814e7f77a265222e5 100644 (file)
@@ -3,7 +3,7 @@ PREFIX = /usr/local
 CFLAGS = -std=gnu99 -O2 -fomit-frame-pointer -Wall -D_BSD_SOURCE -D_GNU_SOURCE
 LDFLAGS =
 
-BINARY = bcm43xx-dasm.bin
+BINARY = b43-dasm.bin
 OBJECTS = main.o util.o
 
 all: $(BINARY)
@@ -17,10 +17,10 @@ $(BINARY): $(OBJECTS)
 
 install: all
        -install -o 0 -g 0 -m 755 $(BINARY) $(PREFIX)/bin/
-       -cp bcm43xx-dasm bcm43xx-dasm.inst
-       -sed -i -e 's/installed=0/installed=1/' bcm43xx-dasm.inst
-       -install -o 0 -g 0 -m 755 bcm43xx-dasm.inst $(PREFIX)/bin/bcm43xx-dasm
-       -rm -f bcm43xx-dasm.inst
+       -cp b43-dasm b43-dasm.inst
+       -sed -i -e 's/installed=0/installed=1/' b43-dasm.inst
+       -install -o 0 -g 0 -m 755 b43-dasm.inst $(PREFIX)/bin/b43-dasm
+       -rm -f b43-dasm.inst
 
 clean:
        -rm -f *~ *.o *.orig *.rej $(BINARY)