?? makefile
字號:
#
# makefile -- lfsr makefile
#
# Copyright (C) 1999, 2000, Gray Research LLC. All rights reserved.
# The contents of this file are subject to the XSOC License Agreement;
# you may not use this file except in compliance with this Agreement.
# See the LICENSE file.
#
# usage: nmake
CC=cl -nologo
CFLAGS=-Os -ML
O=obj
.c{$O\}.obj::
$(CC) $(CFLAGS) -Fo$O\ -c $<
OBJS=$O\lfsr.obj
lfsr.exe: $(OBJS)
$(CC) -Os -Fe$@ $(OBJS)
clean:
del lfsr.exe $(OBJS)
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -