##
# Makefile for transfcount.
#

CFLAGS := -W -Wall -O3

transfcount.so: transfcount.c
	$(CC) $(CFLAGS) -shared -fPIC -o $@ $< -ldl

clean:
	$(RM) transfcount.so

install: transfcount.so
	cp --verbose transfcount.so transfcount /usr/local/bin

