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
|