make.sh 298 B

123456
  1. #!/bin/bash
  2. PROGRAM=car # change this to name of a program you want to compile :)
  3. clear; clear; g++ -x c -g -fmax-errors=5 -pedantic -O3 -Wall -Wextra -Wstrict-prototypes -Wold-style-definition -Wno-unused-parameter -Wno-missing-field-initializers -o $PROGRAM $PROGRAM.c -lm -lSDL2 && ./$PROGRAM