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@0:102b50f941d0, 2018-04-11 (annotated)
- Committer:
- dgabino
- Date:
- Wed Apr 11 14:38:42 2018 +0000
- Revision:
- 0:102b50f941d0
Initial commit
Who changed what in which revision?
User | Revision | Line number | New contents of line |
---|---|---|---|
dgabino | 0:102b50f941d0 | 1 | ### Environment constants |
dgabino | 0:102b50f941d0 | 2 | |
dgabino | 0:102b50f941d0 | 3 | ARCH ?= |
dgabino | 0:102b50f941d0 | 4 | CROSS_COMPILE ?= |
dgabino | 0:102b50f941d0 | 5 | export |
dgabino | 0:102b50f941d0 | 6 | |
dgabino | 0:102b50f941d0 | 7 | ### general build targets |
dgabino | 0:102b50f941d0 | 8 | |
dgabino | 0:102b50f941d0 | 9 | all: |
dgabino | 0:102b50f941d0 | 10 | $(MAKE) all -e -C libloragw |
dgabino | 0:102b50f941d0 | 11 | $(MAKE) all -e -C util_boot |
dgabino | 0:102b50f941d0 | 12 | $(MAKE) all -e -C util_chip_id |
dgabino | 0:102b50f941d0 | 13 | $(MAKE) all -e -C util_pkt_logger |
dgabino | 0:102b50f941d0 | 14 | $(MAKE) all -e -C util_com_stress |
dgabino | 0:102b50f941d0 | 15 | $(MAKE) all -e -C util_tx_test |
dgabino | 0:102b50f941d0 | 16 | $(MAKE) all -e -C util_tx_continuous |
dgabino | 0:102b50f941d0 | 17 | |
dgabino | 0:102b50f941d0 | 18 | clean: |
dgabino | 0:102b50f941d0 | 19 | $(MAKE) clean -e -C libloragw |
dgabino | 0:102b50f941d0 | 20 | $(MAKE) clean -e -C util_boot |
dgabino | 0:102b50f941d0 | 21 | $(MAKE) clean -e -C util_chip_id |
dgabino | 0:102b50f941d0 | 22 | $(MAKE) clean -e -C util_pkt_logger |
dgabino | 0:102b50f941d0 | 23 | $(MAKE) clean -e -C util_com_stress |
dgabino | 0:102b50f941d0 | 24 | $(MAKE) clean -e -C util_tx_test |
dgabino | 0:102b50f941d0 | 25 | $(MAKE) clean -e -C util_tx_continuous |
dgabino | 0:102b50f941d0 | 26 | |
dgabino | 0:102b50f941d0 | 27 | ### EOF |