#!/bin/bash

if [ -z "$CC" ]
then
	CC=gcc
fi


if [ -z "$CFLAGS" ]
then
	CFLAGS="-std=gnu11"
	CFLAGS+=" -O2"
	CFLAGS+=" -fPIE"
fi
