Makefile 482 B

1234567891011121314
  1. ##############################################################################
  2. # Multi-project makefile rules
  3. #
  4. all:
  5. @echo === Building for ArduPilot_H743 ===============================
  6. @make --no-print-directory -f ./make/ArduPilot_H743.make all
  7. @echo ====================================================================
  8. clean:
  9. -@make --no-print-directory -f ./make/ArduPilot_H743.make clean
  10. #
  11. ##############################################################################