X-Git-Url: https://jxself.org/git/?p=linux-libre-firmware.git;a=blobdiff_plain;f=Makefile;h=5e38d940642e3072f5063301f439814a87ff996e;hp=21d16fb5b8581c376cef4a0ddb62c872bf811974;hb=a4d24e3a224a19404bc3ac98389ff376198c85ef;hpb=433d155289c51dfb1957e48310c90116ea39989a diff --git a/Makefile b/Makefile index 21d16fb..5e38d94 100644 --- a/Makefile +++ b/Makefile @@ -13,13 +13,13 @@ # You should have received a copy of the GNU General Public License # along with this program. If not, see . -shell=/bin/sh +shell=/bin/bash prefix=/lib/firmware install_program=install -.PHONY: all test clean install a56 as31 aica ath9k_htc_toolchain ath9k_htc av7110 b43-tools carl9170fw-toolchain carl9170fw cis-tools cis dsp56k ihex2fw isci keyspan_pda openfwwf usbdux +.PHONY: all test clean install a56 as31 aica ath9k_htc_toolchain ath9k_htc atusb av7110 b43-tools carl9170fw-toolchain carl9170fw cis-tools cis dsp56k ihex2fw isci keyspan_pda openfwwf usbdux -all: aica ath9k_htc av7110 carl9170fw cis dsp56k isci keyspan_pda openfwwf usbdux +all: aica ath9k_htc atusb av7110 carl9170fw cis dsp56k isci keyspan_pda openfwwf usbdux a56: cd a56 && $(MAKE) @@ -36,6 +36,9 @@ ath9k_htc_toolchain: ath9k_htc: ath9k_htc_toolchain cd ath9k_htc && $(MAKE) -C target_firmware +atusb: + cd atusb && $(MAKE) atusb.dfu + av7110: cd av7110 && $(MAKE) @@ -81,6 +84,7 @@ clean: if [ -a as31/Makefile ]; then cd as31 && $(MAKE) clean; fi; cd ath9k_htc && $(MAKE) toolchain-clean cd ath9k_htc && $(MAKE) -C target_firmware clean + cd atusb && $(MAKE) clean cd av7110 && $(MAKE) clean cd carl9170fw/toolchain && $(MAKE) clean if [ -a carl9170fw/Makefile ]; then cd carl9170fw && $(MAKE) clean; fi; @@ -99,6 +103,7 @@ install: ln -s ath9k_htc/htc_9271-1.4.0.fw $(prefix)/htc_9271.fw; fi; if [ -a ath9k_htc/target_firmware/htc_7010.fw ]; then $(install_program) -D ath9k_htc/target_firmware/htc_7010.fw $(prefix)/ath9k_htc/htc_7010-1.4.0.fw && \ ln -s ath9k_htc/htc_7010-1.4.0.fw $(prefix)/htc_7010.fw; fi; + if [ -a atusb/atusb.dfu ]; then $(install_program) -D atusb/atusb.dfu $(prefix)/atusb/atusb.dfu; fi; if [ -a av7110/bootcode.bin ]; then $(install_program) -D av7110/bootcode.bin $(prefix)/av7110/bootcode.bin; fi; if [ -a cis/3CCFEM556.cis ]; then $(install_program) -D cis/3CCFEM556.cis $(prefix)/cis/3CCFEM556.cis; fi; if [ -a cis/3CXEM556.cis ]; then $(install_program) -D cis/3CXEM556.cis $(prefix)/cis/3CXEM556.cis; fi;