# Project: wfa # Makefile created by Dev-C++ 4.9.9.0 CPP = g++.exe CC = gcc.exe WINDRES = windres.exe RES = OBJ = main.o $(RES) LINKOBJ = main.o $(RES) LIBS = -L"E:/Dev-Cpp/lib" E:/Dev-Cpp/lib/libws2_32.a -s INCS = -I"E:/Dev-Cpp/include" CXXINCS = -I"E:/Dev-Cpp/include/c++/3.3.1" -I"E:/Dev-Cpp/include/c++/3.3.1/mingw32" -I"E:/Dev-Cpp/include/c++/3.3.1/backward" -I"E:/Dev-Cpp/lib/gcc-lib/mingw32/3.3.1/include" -I"E:/Dev-Cpp/include" BIN = wfa.exe CXXFLAGS = $(CXXINCS) CFLAGS = $(INCS) .PHONY: all all-before all-after clean clean-custom all: all-before wfa.exe all-after clean: clean-custom rm -f $(OBJ) $(BIN) $(BIN): $(OBJ) $(CPP) $(LINKOBJ) -o "wfa.exe" $(LIBS) main.o: main.cpp $(CPP) -c main.cpp -o main.o $(CXXFLAGS)