mirror of
https://github.com/CloverHackyColor/CloverBootloader.git
synced 2024-11-27 12:15:19 +01:00
b1264ef1e3
Signed-off-by: Sergey Isakov <isakov-sl@bk.ru>
29 lines
676 B
Erlang
Executable File
29 lines
676 B
Erlang
Executable File
## @file
|
|
# Makefile
|
|
#
|
|
# Copyright (c) 2007 - 2014, Intel Corporation. All rights reserved.<BR>
|
|
# SPDX-License-Identifier: BSD-2-Clause-Patent
|
|
#
|
|
|
|
APPLICATION = $(BIN_PATH)\$(APPNAME).exe
|
|
|
|
all: $(APPLICATION)
|
|
|
|
$(APPLICATION) : $(OBJECTS)
|
|
-@if not exist $(BIN_PATH) mkdir $(BIN_PATH)
|
|
$(LD) /nologo /debug /OPT:REF /OPT:ICF=10 /incremental:no /nodefaultlib:libc.lib /out:$@ $(LIBS) $**
|
|
|
|
$(OBJECTS) : $(SOURCE_PATH)\Include\Common\BuildVersion.h
|
|
|
|
.PHONY:clean
|
|
.PHONY:cleanall
|
|
|
|
clean:
|
|
del /f /q $(OBJECTS) *.pdb > nul
|
|
|
|
cleanall:
|
|
del /f /q $(OBJECTS) $(APPLICATION) *.pdb $(BIN_PATH)\$(APPNAME).pdb > nul
|
|
|
|
!INCLUDE $(SOURCE_PATH)\Makefiles\ms.rule
|
|
|