#Makefile for the storage site deamon

COMP = gcc
DEFINES = 
OPTIONS = -g -Wall -I ../incl/
OBJECTS = process_req.o fh_cache.o pdfs_deamon.o logging.o attr_funcs.o main.o \
cs2ss_funcs.o message.o ss_update.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

