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.
19 lines
318 B
19 lines
318 B
# PX4 build is via external build system |
|
|
|
ifneq ($(PX4_ROOT),) |
|
|
|
px4: |
|
make -C $(PX4_ROOT) EXTERNAL_APPS=$(PWD) |
|
|
|
px4-clean: clean |
|
make -C $(PX4_ROOT) EXTERNAL_APPS=$(PWD) clean |
|
|
|
px4-upload: |
|
make -C $(PX4_ROOT) EXTERNAL_APPS=$(PWD) upload |
|
|
|
else |
|
|
|
px4: |
|
$(error ERROR: You need to add PX4_ROOT to your config.mk) |
|
|
|
endif
|
|
|