Important changes to repositories hosted on mbed.com
Mbed hosted mercurial repositories are deprecated and are due to be permanently deleted in July 2026.
To keep a copy of this software download the repository Zip archive or clone locally using Mercurial.
It is also possible to export all your personal repositories from the account settings page.
Makefile
- Committer:
- dgabino
- Date:
- 2018-04-11
- Revision:
- 0:102b50f941d0
File content as of revision 0:102b50f941d0:
### Environment constants ARCH ?= CROSS_COMPILE ?= export ### general build targets all: $(MAKE) all -e -C libloragw $(MAKE) all -e -C util_boot $(MAKE) all -e -C util_chip_id $(MAKE) all -e -C util_pkt_logger $(MAKE) all -e -C util_com_stress $(MAKE) all -e -C util_tx_test $(MAKE) all -e -C util_tx_continuous clean: $(MAKE) clean -e -C libloragw $(MAKE) clean -e -C util_boot $(MAKE) clean -e -C util_chip_id $(MAKE) clean -e -C util_pkt_logger $(MAKE) clean -e -C util_com_stress $(MAKE) clean -e -C util_tx_test $(MAKE) clean -e -C util_tx_continuous ### EOF