#!/bin/sh build_mode="debug" # temporary for now build_dir="build" mkdir -p $build_dir include_path=include include_opts="-I $include_path" files="main.c $include_path/glad/glad.c" build_opts="$build_dir/main" lib_path="libs/SDL2" link_opts="-L $lib_path -lSDL2" build_command="g++ -g -Og $include_opts $files $link_opts -o $build_opts" printf "Building your sdl2 project.\n\nThis is the build command for posteritys' sake:\n\n" printf "$build_command\n\n" $build_command printf "Build Complete!\n"