mirror of
https://github.com/ArduPilot/ardupilot
synced 2025-01-07 00:18:29 -04:00
15 lines
240 B
Makefile
15 lines
240 B
Makefile
|
# PX4 build is via external build system
|
||
|
|
||
|
ifneq ($(PX4_ROOT),)
|
||
|
|
||
|
px4:
|
||
|
make -C $(PX4_ROOT) EXTERNAL_APPS=$(PWD)
|
||
|
|
||
|
px4-clean:
|
||
|
make -C $(PX4_ROOT) EXTERNAL_APPS=$(PWD) clean
|
||
|
|
||
|
px4-upload:
|
||
|
make -C $(PX4_ROOT) EXTERNAL_APPS=$(PWD) upload
|
||
|
|
||
|
endif
|