# file: ./ee_4773/assignments_computer/solution_00/GNUmakefile
#
# this is a standard template for compiling and linking a program
# using level 2 optimization and a debug mode.

ISIP_DEPS = test.h test_functions.h

ISIP_FILES = test.cc test_*.cc

ISIP_CFLAGS = -O -g

ISIP_EXE = test.exe

include $(ISIP)/util/misc/make/compile_and_link.make
