📄 makefile.win
字号:
# Project: tree
# Makefile created by Dev-C++ 4.9.9.0
CPP = g++.exe -D__DEBUG__
CC = gcc.exe -D__DEBUG__
WINDRES = windres.exe
RES =
OBJ = main.o Tree.o Person.o $(RES)
LINKOBJ = main.o Tree.o Person.o $(RES)
LIBS = -L"C:/Dev-Cpp/lib" -g3
INCS = -I"C:/Dev-Cpp/include"
CXXINCS = -I"C:/Dev-Cpp/include/c++/3.3.1" -I"C:/Dev-Cpp/include/c++/3.3.1/mingw32" -I"C:/Dev-Cpp/include/c++/3.3.1/backward" -I"C:/Dev-Cpp/lib/gcc-lib/mingw32/3.3.1/include" -I"C:/Dev-Cpp/include"
BIN = tree.exe
CXXFLAGS = $(CXXINCS) -g3
CFLAGS = $(INCS) -g3
.PHONY: all all-before all-after clean clean-custom
all: all-before tree.exe all-after
clean: clean-custom
rm -f $(OBJ) $(BIN)
$(BIN): $(OBJ)
$(CPP) $(LINKOBJ) -o "tree.exe" $(LIBS)
main.o: main.cpp
$(CPP) -c main.cpp -o main.o $(CXXFLAGS)
Tree.o: Tree.cpp
$(CPP) -c Tree.cpp -o Tree.o $(CXXFLAGS)
Person.o: Person.cpp
$(CPP) -c Person.cpp -o Person.o $(CXXFLAGS)
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -