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