⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 makefile.txt

📁 The existed tree implementation
💻 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

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -