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