UNPKG

quickprojects

Version:

QuickProjects makes it easy to create templates for programming projects without having to use an IDE.

22 lines (15 loc) 298 B
##################### # Variables ##################### main='src/main/c/main.c' ##################### # Targets ##################### default: compile compile: test -d build || mkdir build gcc -Wall -g -o build/C_Executable ${main} run: compile build/C_Executable clean: rm -rf -R build