#

# Universal compilation Flags

CFLAGS = -c -I../include

# Compilation Flags for Mips Architecture

OPT_FLAGS = -O2 -G 4
DEBUG_FLAGS = -g -G 0

debug:
	cc $(CFLAGS) $(DEBUG_FLAGS) *.c

opt:
	cc $(CFLAGS) $(OPT_FLAGS) *.c

