You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
240 B
15 lines
240 B
12 years ago
|
# 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
|