Archive / / Makefile.win
2004-08-16 03:54:38 UTC
previous next
# Project: Circles2 # Makefile created by Dev-C++ 4.9.8.0 CPP = g++.exe CC = gcc.exe WINDRES = windres.exe RES = OBJ = circles2.o $(RES) LINKOBJ = circles2.o $(RES) LIBS = -L"C:/Dev-Cpp/lib" -l alleg 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 = Circles2.exe CXXFLAGS = $(CXXINCS) CFLAGS = $(INCS) .PHONY: all all-before all-after clean clean-custom all: all-before Circles2.exe all-after clean: clean-custom rm -f $(OBJ) $(BIN) $(BIN): $(LINKOBJ) $(CPP) $(LINKOBJ) -o "Circles2.exe" $(LIBS) circles2.o: circles2.cpp $(CPP) -c circles2.cpp -o circles2.o $(CXXFLAGS)