1
0
mirror of https://github.com/abperiasamy/rtl8812AU_8821AU_linux.git synced 2025-08-16 08:34:15 +02:00

Cleanup makefile

This commit is contained in:
Harshavardhana 2015-05-21 14:29:47 -07:00
parent 3914b7770b
commit 4b53eb7587

View File

@ -565,7 +565,6 @@ _OUTSRC_FILES += hal/OUTSRC/$(RTL871X)/HalHWImg8723B_BB.o\
hal/OUTSRC/$(RTL871X)/odm_RegConfig8723B.o \ hal/OUTSRC/$(RTL871X)/odm_RegConfig8723B.o \
hal/OUTSRC/$(RTL871X)/HalPhyRf_8723B.o \ hal/OUTSRC/$(RTL871X)/HalPhyRf_8723B.o \
hal/OUTSRC/$(RTL871X)/odm_RTL8723B.o hal/OUTSRC/$(RTL871X)/odm_RTL8723B.o
endif endif
########### AUTO_CFG ################################# ########### AUTO_CFG #################################
@ -1073,11 +1072,11 @@ clean:
endif endif
check: check:
vagrant up || vagrant init ubuntu/vivid32; vagrant up # need gcc-4.9 to avoid error `cc1: error: -Werror=date-time: no option -Wdate-time` (trusty only has gcc-4.9-base which doesn't provide /usr/bin/gcc-4.9) vagrant up || vagrant init ubuntu/vivid32; vagrant up
TMP=$$(vagrant ssh-config | grep Port | cut -d ' ' -f 4);\ TMP=$$(vagrant ssh-config | grep Port | cut -d ' ' -f 4);\
ssh -p $$TMP -i $(HOME)/.vagrant.d/insecure_private_key vagrant@localhost 'bash -s' < fetch.sh ssh -p $$TMP -i $(HOME)/.vagrant.d/insecure_private_key vagrant@localhost 'bash -s' < fetch.sh
vagrant ssh -c 'sudo dpkg -i linux-headers-4.0.1-040001_4.0.1-040001.201504290935_all.deb linux-headers-4.0.1-040001-generic_4.0.1-040001.201504290935_i386.deb linux-image-4.0.1-040001-generic_4.0.1-040001.201504290935_i386.deb' vagrant ssh -c 'sudo dpkg -i linux-headers-4.0.1-040001_4.0.1-040001.201504290935_all.deb linux-headers-4.0.1-040001-generic_4.0.1-040001.201504290935_i386.deb linux-image-4.0.1-040001-generic_4.0.1-040001.201504290935_i386.deb'
vagrant ssh -c 'sudo apt-get update && sudo apt-get install --yes git make' vagrant ssh -c 'sudo apt-get update && sudo apt-get install --yes git build-essential'
vagrant ssh -c 'if ! [ -d rtl8812AU_8821AU_linux ] ; then git clone https://github.com/abperiasamy/rtl8812AU_8821AU_linux.git; fi' vagrant ssh -c 'if ! [ -d rtl8812AU_8821AU_linux ] ; then git clone https://github.com/abperiasamy/rtl8812AU_8821AU_linux.git; fi'
vagrant ssh -c 'cd rtl8812AU_8821AU_linux; make KVER=4.0.1-040001-generic' vagrant ssh -c 'cd rtl8812AU_8821AU_linux; make KVER=4.0.1-040001-generic'
vagrant ssh -c 'cd rtl8812AU_8821AU_linux; sudo make install' vagrant ssh -c 'cd rtl8812AU_8821AU_linux; sudo make install'