CFLAGS	= -g #-Wall 

TOBJS	= htable.o reps.o

INCLUDES = $(INC_PATH)
LIBS	= $(LIB_PATH)

.c.o:
	$(CC) -c $(CFLAGS) $(INCLUDES) $<

all: repres archive

build: repres

repres:  $(TOBJS) 

archive:
	ar rcv $(ROOT)/lib/libbss.a $(TOBJS);\
	cp *.h $(ROOT)/include

clean:
	rm -f *.o *.a test  core *.aux *.dvi *.log
