Skip to content
GitLab
Menu
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
Jul 05, 2019
by
Sandrine Bailleux
Committed by
TrustedFirmware Code Review
Jul 05, 2019
Browse files
Merge "tools/fiptool: Add Makefile.msvc to build on Windows." into integration
parents
ef4b8d5a
7e771a9b
Changes
1
Hide whitespace changes
Inline
Side-by-side
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
$@
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