Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
Menu
Open sidebar
adam.huang
Arm Trusted Firmware
Commits
996d3793
Commit
996d3793
authored
5 years ago
by
Sandrine Bailleux
Committed by
TrustedFirmware Code Review
5 years ago
Browse files
Options
Download
Plain Diff
Merge "tools/fiptool: Add Makefile.msvc to build on Windows." into integration
parents
ef4b8d5a
7e771a9b
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
tools/fiptool/Makefile.msvc
+30
-0
tools/fiptool/Makefile.msvc
with
30 additions
and
0 deletions
+30
-0
tools/fiptool/Makefile.msvc
0 → 100644
View file @
996d3793
#
# Copyright (c) 2019, Arm Limited. All rights reserved.
#
# SPDX-License-Identifier: BSD-3-Clause
#
CC
=
cl.exe
LD
=
link.exe
FIPTOOL
=
fiptool.exe
OBJECTS
=
fiptool.obj tbbr_config.obj win_posix.obj
INC
=
-I
.
-I
..
\.
.
\i
nclude
\t
ools_share
CFLAGS
=
$(CFLAGS)
/nologo /Za /Zi /c /O2 /MT
all
:
$(FIPTOOL)
$(FIPTOOL)
:
$(OBJECTS)
$(LD)
/INCREMENTAL:NO /debug /nodefaultlib:libc.lib /out:
$@
$(LIBS)
$*
*
.PHONY
:
clean realclean
clean
:
del /f /q
$(OBJECTS)
>
nul
realclean
:
del /f /q
$(OBJECTS)
$(FIPTOOL)
>
nul
.c.obj
:
$(CC)
-c
$(CFLAGS)
$(INC)
$<
-Fo
$@
This diff is collapsed.
Click to expand it.
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment
Menu
Projects
Groups
Snippets
Help