www.pudn.com > yinhangjiasuanfa.rar > Makefile.win


# Project: Project10 
# Makefile created by Dev-C++ 4.9.8.0 
 
CPP  = g++.exe 
CC   = gcc.exe 
WINDRES = windres.exe 
RES  =  
OBJ  = main.o $(RES) 
LINKOBJ  = main.o $(RES) 
LIBS =  -L"C:/Dev-Cpp/lib"  
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  = Project10.exe 
CXXFLAGS = $(CXXINCS)  
CFLAGS = $(INCS)  
 
.PHONY: all all-before all-after clean clean-custom 
 
all: all-before Project10.exe all-after 
 
 
clean: clean-custom 
	rm -f $(OBJ) $(BIN) 
 
$(BIN): $(LINKOBJ) 
	$(CPP) $(LINKOBJ) -o "Project10.exe" $(LIBS) 
 
main.o: main.cpp 
	$(CPP) -c main.cpp -o main.o $(CXXFLAGS)