makefile.win
来自「飞机场模拟系统」· WIN 代码 · 共 43 行
WIN
43 行
# Project: 模拟飞机起飞降落
# Makefile created by Dev-C++ 4.9.9.2
CPP = g++.exe
CC = gcc.exe
WINDRES = windres.exe
RES =
OBJ = Test.o Runway.o Plane.o Extended_queue.o Random.o $(RES)
LINKOBJ = Test.o Runway.o Plane.o Extended_queue.o Random.o $(RES)
LIBS = -L"D:/Dev-Cpp/lib"
INCS = -I"D:/Dev-Cpp/include"
CXXINCS = -I"D:/Dev-Cpp/lib/gcc/mingw32/3.4.2/include" -I"D:/Dev-Cpp/include/c++/3.4.2/backward" -I"D:/Dev-Cpp/include/c++/3.4.2/mingw32" -I"D:/Dev-Cpp/include/c++/3.4.2" -I"D:/Dev-Cpp/include"
BIN = 模拟飞机起飞降落.exe
CXXFLAGS = $(CXXINCS)
CFLAGS = $(INCS)
RM = rm -f
.PHONY: all all-before all-after clean clean-custom
all: all-before 模拟飞机起飞降落.exe all-after
clean: clean-custom
${RM} $(OBJ) $(BIN)
$(BIN): $(OBJ)
$(CPP) $(LINKOBJ) -o "模拟飞机起飞降落.exe" $(LIBS)
Test.o: Test.cpp
$(CPP) -c Test.cpp -o Test.o $(CXXFLAGS)
Runway.o: Runway.cpp
$(CPP) -c Runway.cpp -o Runway.o $(CXXFLAGS)
Plane.o: Plane.cpp
$(CPP) -c Plane.cpp -o Plane.o $(CXXFLAGS)
Extended_queue.o: Extended_queue.cpp
$(CPP) -c Extended_queue.cpp -o Extended_queue.o $(CXXFLAGS)
Random.o: Random.cpp
$(CPP) -c Random.cpp -o Random.o $(CXXFLAGS)
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?