# Compiler flags... CPP_COMPILER = g++ C_COMPILER = gcc # Include paths... Debug_Include_Path= Release_Include_Path= # Library paths... Debug_Library_Path= Release_Library_Path= # Additional libraries... Debug_Libraries=-Wl,--start-group -l$(NoInherit) -Wl,--end-group Release_Libraries=-Wl,--start-group -l$(NoInherit) -Wl,--end-group # Preprocessor definitions... Debug_Preprocessor_Definitions=-D GCC_BUILD -D _DEBUG Release_Preprocessor_Definitions=-D GCC_BUILD -D NDEBUG # Implictly linked object files... Debug_Implicitly_Linked_Objects= Release_Implicitly_Linked_Objects= # Compiler flags... Debug_Compiler_Flags=-O0 -g Release_Compiler_Flags= # Builds all configurations for this project... .PHONY: build_all_configurations build_all_configurations: Debug Release # Builds the Debug configuration... .PHONY: Debug Debug: create_folders ../Windows/Debug/gccAutoUpdate/src/AutoUpdater.o ../Windows/Debug/gccAutoUpdate/src/stdafx.o g++ ../Windows/Debug/gccAutoUpdate/src/AutoUpdater.o ../Windows/Debug/gccAutoUpdate/src/stdafx.o $(Debug_Library_Path) $(Debug_Libraries) -Wl,-rpath,./ -o ../Windows/gccDebug/AutoUpdater.exe # Compiles file src/AutoUpdater.cpp for the Debug configuration... -include ../Windows/Debug/gccAutoUpdate/src/AutoUpdater.d ../Windows/Debug/gccAutoUpdate/src/AutoUpdater.o: src/AutoUpdater.cpp $(CPP_COMPILER) $(Debug_Preprocessor_Definitions) $(Debug_Compiler_Flags) -c src/AutoUpdater.cpp $(Debug_Include_Path) -o ../Windows/Debug/gccAutoUpdate/src/AutoUpdater.o $(CPP_COMPILER) $(Debug_Preprocessor_Definitions) $(Debug_Compiler_Flags) -MM src/AutoUpdater.cpp $(Debug_Include_Path) > ../Windows/Debug/gccAutoUpdate/src/AutoUpdater.d # Compiles file src/stdafx.cpp for the Debug configuration... -include ../Windows/Debug/gccAutoUpdate/src/stdafx.d ../Windows/Debug/gccAutoUpdate/src/stdafx.o: src/stdafx.cpp $(CPP_COMPILER) $(Debug_Preprocessor_Definitions) $(Debug_Compiler_Flags) -c src/stdafx.cpp $(Debug_Include_Path) -o ../Windows/Debug/gccAutoUpdate/src/stdafx.o $(CPP_COMPILER) $(Debug_Preprocessor_Definitions) $(Debug_Compiler_Flags) -MM src/stdafx.cpp $(Debug_Include_Path) > ../Windows/Debug/gccAutoUpdate/src/stdafx.d # Builds the Release configuration... .PHONY: Release Release: create_folders ../Windows/Release/gccAutoUpdater/src/AutoUpdater.o ../Windows/Release/gccAutoUpdater/src/stdafx.o g++ ../Windows/Release/gccAutoUpdater/src/AutoUpdater.o ../Windows/Release/gccAutoUpdater/src/stdafx.o $(Release_Library_Path) $(Release_Libraries) -Wl,-rpath,./ -o ../Windows/gccRelease/AutoUpdater.exe # Compiles file src/AutoUpdater.cpp for the Release configuration... -include ../Windows/Release/gccAutoUpdater/src/AutoUpdater.d ../Windows/Release/gccAutoUpdater/src/AutoUpdater.o: src/AutoUpdater.cpp $(CPP_COMPILER) $(Release_Preprocessor_Definitions) $(Release_Compiler_Flags) -c src/AutoUpdater.cpp $(Release_Include_Path) -o ../Windows/Release/gccAutoUpdater/src/AutoUpdater.o $(CPP_COMPILER) $(Release_Preprocessor_Definitions) $(Release_Compiler_Flags) -MM src/AutoUpdater.cpp $(Release_Include_Path) > ../Windows/Release/gccAutoUpdater/src/AutoUpdater.d # Compiles file src/stdafx.cpp for the Release configuration... -include ../Windows/Release/gccAutoUpdater/src/stdafx.d ../Windows/Release/gccAutoUpdater/src/stdafx.o: src/stdafx.cpp $(CPP_COMPILER) $(Release_Preprocessor_Definitions) $(Release_Compiler_Flags) -c src/stdafx.cpp $(Release_Include_Path) -o ../Windows/Release/gccAutoUpdater/src/stdafx.o $(CPP_COMPILER) $(Release_Preprocessor_Definitions) $(Release_Compiler_Flags) -MM src/stdafx.cpp $(Release_Include_Path) > ../Windows/Release/gccAutoUpdater/src/stdafx.d # Creates the intermediate and output folders for each configuration... .PHONY: create_folders create_folders: mkdir -p ../Windows/Debug/gccAutoUpdate/source mkdir -p ../Windows/gccDebug mkdir -p ../Windows/Release/gccAutoUpdater/source mkdir -p ../Windows/gccRelease # Cleans intermediate and output files (objects, libraries, executables)... .PHONY: clean clean: rm -f ../Windows/Debug/gccAutoUpdate/*.o rm -f ../Windows/Debug/gccAutoUpdate/*.d rm -f ../Windows/gccDebug/*.a rm -f ../Windows/gccDebug/*.so rm -f ../Windows/gccDebug/*.dll rm -f ../Windows/gccDebug/*.exe rm -f ../Windows/Release/gccAutoUpdater/*.o rm -f ../Windows/Release/gccAutoUpdater/*.d rm -f ../Windows/gccRelease/*.a rm -f ../Windows/gccRelease/*.so rm -f ../Windows/gccRelease/*.dll rm -f ../Windows/gccRelease/*.exe