
# Optimization flag passed to compiler:
OPTIMIZATION_CFLAG = -O2 -pipe

COMMON_CFLAGS = $(PROJECT_SPECIFIC_CFLAGS) -Wall  

# Flags passed to compiler in normal 'app' compiles:
NORMAL_CFLAGS = $(COMMON_CFLAGS) $(OPTIMIZATION_CFLAG)

# Flags passed to compiler in normal 'app' compiles:
# old (3.2) way
#NORMAL_CFLAGS = $(OPTIMIZATION_CFLAG) -Wall
