###############################
# Define the compiler to use:
###############################
#  On linux, uncomment the following two lines
#INCL = /usr/include/g++/
#CC = g++ -DGNUGPP -I $(INCL) -fhandle-exceptions -Wall -g

#On tuzo you want to use:
CC = c++ -DTUZO
#Here -DTUZO defines a flag TUZO used to define type  bool
#####################################################

events: events.o ADT.o trandom.o
	$(CC) events.o ADT.o trandom.o -lm -o events

events.o: events.cc ADT.h bool.h event.h
	$(CC) -c events.cc

ADT.o: ADT.cc ADT.h bool.h
	$(CC) -c ADT.cc

trandom.o: trandom.cc trandom.h
	$(CC) -c trandom.cc

