quickprojects
Version:
QuickProjects makes it easy to create templates for programming projects without having to use an IDE.
22 lines (15 loc) • 297 B
Plain Text
#####################
# Variables
#####################
main='src/main/cpp/Main.cpp'
#####################
# Targets
#####################
default: compile
compile:
test -d build || mkdir build
g++ ${main} -o build/Cpp_Executable
run: compile
build/Cpp_Executable
clean:
rm -rf -R build