blob: 95aefccb25962bd860adbc8c2a7ec9adfbfc6721 (
plain)
1
2
3
4
5
6
7
|
#!/bin/sh
include='-I../../libs -I../../libs/pwyazh'
cflags="-g -Wall -Wextra -Wno-unused-parameter $include"
libs='-lm -lGL -lGLEW -lglfw'
target='debug'
set -x
gcc -o $target $cflags $target.c $libs
|