#Makefile for the user site driver

COMP = gcc
DEFINES = 
OPTIONS = -g -Wall -I ../incl/
OBJECTS = interface.o cs_funcs.o ss_funcs.o message.o utils.o
HEADER = incl/args.h incl/pdfs.h incl/msg_format.h incl/defns.h

run	: $(OBJECTS)
	$(COMP) $(OPTIONS) -o run $(OBJECTS)

.c.o	:
	$(COMP) $(OPTIONS) -c $<

clean	:
	rm -f $(OBJECTS) run

