📄 makefile
字号:
#
# Makefile for TESTFCI
#
CL = cl.exe
LINK = link.exe
CFLAGS = /nologo /ML /W3 /O2 /c
LINK_FLAGS = /nologo /incremental:no
#
# Targets
#
all: testfci.exe
clean:
-@if exist testfci.obj erase testfci.obj
-@if exist testfci.exe erase testfci.exe
#
# Linking
#
testfci.exe: testfci.obj ..\..\lib\fci.lib
$(LINK) $(LINK_FLAGS) testfci.obj ..\..\lib\fci.lib /out:testfci.exe
#
# Object files
#
testfci.obj: testfci.c ..\..\include\fci.h
$(CL) $(CFLAGS) $*.c
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -