CFLAGS= -O2 -Wall `glib-config --cflags`
LIBS=`glib-config --libs`

BINS=hash_test hash_time

all: $(BINS)
clean:
	rm $(BINS) *.o

hash_test: hash_test.o
	$(CC) $(CFLAGS) -o hash_test hash_test.o $(LIBS)

hash_time: hash_time.o
	$(CC) $(CFLAGS) -o hash_time hash_time.o $(LIBS)


