?? makefile
字號:
# Project rbtree&bstree makefile
#created by alpha 2008.11.3
CPP = g++
OBJ = main.o sources/rbtree.o sources/dot.o sources/triple.o \
sources/control.o sources/command.o sources/bstree.o
RM = rm -f
CPPFLAGS =-Wall -O2 -g
all: rbtree
clean:
$(RM) rbtree.exe *.jpg *.dot *.o sources/*.o
rbtree: $(OBJ)
$(CPP) $(CPPFLAGS) *.o sources/*.o -o rbtree.exe
$(RM) *.o sources/*.o
main.o: main.cpp
$(CPP) $(CPPFLAGS) -c main.cpp -o main.o
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -