?? makefile.txt
字號:
# Makefile for MapAVL class
# define compiler
CC = g++
# location of the Pair template class
PAIR_LOCATION = /ugrad0/cs252/pub/examples/Pair
# define compile flags
# -g: insert debug information
CFLAGS = -g -I$(PAIR_LOCATION)
#define link flags
LFLAGS =
default: MapAVL-driver
MapAVL-driver.o: MapAVL-driver.cpp MapAVL.h MapAVL.template
$(CC) $(CFLAGS) -c MapAVL-driver.cpp
MapAVL-driver: MapAVL-driver.o
$(CC) $(LFLAGS) -o MapAVL-driver MapAVL-driver.o
clean:
rm -f MapAVL-driver.o MapAVL-driver core
?? 快捷鍵說明
復(fù)制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -