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