?? makefile.win
字號:
# Project: 工程2
# Makefile created by Dev-C++ 4.9.9.2
CPP = g++.exe
CC = gcc.exe
WINDRES = windres.exe
RES =
OBJ = exe1.o 1.o $(RES)
LINKOBJ = exe1.o 1.o $(RES)
LIBS = -L"F:/soft/Dev-Cpp/lib"
INCS = -I"F:/soft/Dev-Cpp/include"
CXXINCS = -I"F:/soft/Dev-Cpp/lib/gcc/mingw32/3.4.2/include" -I"F:/soft/Dev-Cpp/include/c++/3.4.2/backward" -I"F:/soft/Dev-Cpp/include/c++/3.4.2/mingw32" -I"F:/soft/Dev-Cpp/include/c++/3.4.2" -I"F:/soft/Dev-Cpp/include"
BIN = 工程1.exe
CXXFLAGS = $(CXXINCS)
CFLAGS = $(INCS)
RM = rm -f
.PHONY: all all-before all-after clean clean-custom
all: all-before 工程1.exe all-after
clean: clean-custom
${RM} $(OBJ) $(BIN)
$(BIN): $(OBJ)
$(CC) $(LINKOBJ) -o "工程1.exe" $(LIBS)
exe1.o: exe1.c
$(CC) -c exe1.c -o exe1.o $(CFLAGS)
1.o: 1.c
$(CC) -c 1.c -o 1.o $(CFLAGS)
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -