Clarify dump1090_mr make instructions

This commit is contained in:
Karl Lehenbauer 2014-10-19 06:35:55 -05:00
parent 2ae636846d
commit a9b662a52c
1 changed files with 7 additions and 0 deletions

View File

@ -97,20 +97,27 @@ To build dump1090...
```sh ```sh
make make
``` ```
To build and install faup1090 only... To build and install faup1090 only...
```sh ```sh
make -f makefaup1090 all make -f makefaup1090 all
sudo make -f makefaup1090 install-faup1090 sudo make -f makefaup1090 install-faup1090
``` ```
To build and install both faup1090 and dump1090... To build and install both faup1090 and dump1090...
```sh ```sh
make
make -f makefaup1090 all make -f makefaup1090 all
sudo make -f makefaup1090 install-faup1090 install-dump1090 sudo make -f makefaup1090 install-faup1090 install-dump1090
``` ```
To build and install dump1090 and faup1090 and configure the system to start them automatically whenever the system boots To build and install dump1090 and faup1090 and configure the system to start them automatically whenever the system boots
``` ```
make
make -f makefaup1090 all
sudo make -f makefaup1090 full-install sudo make -f makefaup1090 full-install
``` ```