blob: 5afee5d644e04c24bf15989114bfa63913bcd0d2 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
### Environment constants
CROSS_COMPILE :=
export
### general build targets
all:
$(MAKE) all -e -C libloragw
$(MAKE) all -e -C util_band_survey
$(MAKE) all -e -C util_pkt_logger
$(MAKE) all -e -C util_spi_stress
$(MAKE) all -e -C util_tx_test
clean:
$(MAKE) clean -e -C libloragw
$(MAKE) clean -e -C util_band_survey
$(MAKE) clean -e -C util_pkt_logger
$(MAKE) clean -e -C util_spi_stress
$(MAKE) clean -e -C util_tx_test
### EOF
|