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.
pal/Test/makefile@2:b894b3508057, 2017-09-05 (annotated)
- Committer:
- Ren Boting
- Date:
- Tue Sep 05 11:56:13 2017 +0900
- Revision:
- 2:b894b3508057
- Parent:
- 0:29983394c6b6
Update all libraries and reform main.cpp
Who changed what in which revision?
| User | Revision | Line number | New contents of line |
|---|---|---|---|
| edamame22 | 0:29983394c6b6 | 1 | # ----------------------------------------------------------------------- |
| edamame22 | 0:29983394c6b6 | 2 | # Copyright (c) 2016 ARM Limited. All rights reserved. |
| edamame22 | 0:29983394c6b6 | 3 | # SPDX-License-Identifier: Apache-2.0 |
| edamame22 | 0:29983394c6b6 | 4 | # Licensed under the Apache License, Version 2.0 (the License); you may |
| edamame22 | 0:29983394c6b6 | 5 | # not use this file except in compliance with the License. |
| edamame22 | 0:29983394c6b6 | 6 | # You may obtain a copy of the License at |
| edamame22 | 0:29983394c6b6 | 7 | # |
| edamame22 | 0:29983394c6b6 | 8 | # http://www.apache.org/licenses/LICENSE-2.0 |
| edamame22 | 0:29983394c6b6 | 9 | # |
| edamame22 | 0:29983394c6b6 | 10 | # Unless required by applicable law or agreed to in writing, software |
| edamame22 | 0:29983394c6b6 | 11 | # distributed under the License is distributed on an AS IS BASIS, WITHOUT |
| edamame22 | 0:29983394c6b6 | 12 | # WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| edamame22 | 0:29983394c6b6 | 13 | # See the License for the specific language governing permissions and |
| edamame22 | 0:29983394c6b6 | 14 | # limitations under the License. |
| edamame22 | 0:29983394c6b6 | 15 | # ----------------------------------------------------------------------- |
| edamame22 | 0:29983394c6b6 | 16 | |
| edamame22 | 0:29983394c6b6 | 17 | |
| edamame22 | 0:29983394c6b6 | 18 | ############################################################### |
| edamame22 | 0:29983394c6b6 | 19 | # make all target platforms |
| edamame22 | 0:29983394c6b6 | 20 | # |
| edamame22 | 0:29983394c6b6 | 21 | # |
| edamame22 | 0:29983394c6b6 | 22 | ############################################################### |
| edamame22 | 0:29983394c6b6 | 23 | # Make platform detection and definitions |
| edamame22 | 0:29983394c6b6 | 24 | include make_platform.mk |
| edamame22 | 0:29983394c6b6 | 25 | |
| edamame22 | 0:29983394c6b6 | 26 | |
| edamame22 | 0:29983394c6b6 | 27 | .PHONY: all clean check |
| edamame22 | 0:29983394c6b6 | 28 | |
| edamame22 | 0:29983394c6b6 | 29 | #==================================================== |
| edamame22 | 0:29983394c6b6 | 30 | # Platform morpheus |
| edamame22 | 0:29983394c6b6 | 31 | TARGET_PLATFORM:=mbedOS |
| edamame22 | 0:29983394c6b6 | 32 | TARGET_CONFIGURATION_DEFINES:= HAS_RTOS HAS_SOCKET |
| edamame22 | 0:29983394c6b6 | 33 | all: mbedOS_all |
| edamame22 | 0:29983394c6b6 | 34 | check: mbedOS_check |
| edamame22 | 0:29983394c6b6 | 35 | clean: mbedOS_clean |
| edamame22 | 0:29983394c6b6 | 36 | include all_tests.mk |
| edamame22 | 0:29983394c6b6 | 37 | #==================================================== |
| edamame22 | 0:29983394c6b6 | 38 |