You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
37 lines
797 B
37 lines
797 B
#
|
|
# Copyright (c) 2019-2020, Arm Limited. All rights reserved.
|
|
#
|
|
# SPDX-License-Identifier: BSD-3-Clause
|
|
#
|
|
|
|
CC = cl.exe
|
|
LD = link.exe
|
|
|
|
# FIPTOOLPATH and FIPTOOL are passed from the main makefile.
|
|
|
|
OBJECTS = $(FIPTOOLPATH)\fiptool.obj \
|
|
$(FIPTOOLPATH)\tbbr_config.obj \
|
|
$(FIPTOOLPATH)\win_posix.obj
|
|
|
|
INC = -I$(FIPTOOLPATH) -Iinclude\tools_share
|
|
|
|
CFLAGS = $(CFLAGS) /nologo /Za /Zi /c /O2 /MT
|
|
|
|
all: $(FIPTOOL)
|
|
|
|
$(FIPTOOL): $(OBJECTS)
|
|
$(LD) /nologo /INCREMENTAL:NO /debug /nodefaultlib:libc.lib /out:$@ $(LIBS) $**
|
|
|
|
.PHONY: clean realclean
|
|
|
|
clean:
|
|
-@del /f /q $(OBJECTS) > nul
|
|
-@del /f /q $(FIPTOOLPATH)\*.pdb > nul
|
|
|
|
realclean:
|
|
-@del /f /q $(OBJECTS) > nul
|
|
-@del /f /q $(FIPTOOLPATH)\*.pdb > nul
|
|
-@del /f /q $(FIPTOOL) > nul
|
|
|
|
.c.obj:
|
|
$(CC) -c $(CFLAGS) $(INC) $< -Fo$@
|
|
|