?? makefile
字號:
# Comment/uncomment the following line to enable/disable debugging#DEBUG = y# This Makefile has been simplified as much as possible, by putting all# generic material, independent of this specific directory, into# ../Rules.make. Read that file for detailsTOPDIR := $(shell cd ..; pwd)include $(TOPDIR)/Rules.makeifeq ($(DEBUG),y) DEBFLAGS = -O -g -DALL_DEBUGelse DEBFLAGS = -O2endifCFLAGS += $(DEBFLAGS) -I.. -DMODULEOBJS = allocator.oall: $(OBJS)install: install -d $(INSTALLDIR) install -c allocator.o $(INSTALLDIR)clean: rm -f *.o *~ core
?? 快捷鍵說明
復(fù)制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -