# No autotools madness here. Just a simple Makefile to satisfy dpkg-buildpackage


# installation destination
LIBDIR=/usr/lib/mediabox

_LIBDIR=${DESTDIR}${LIBDIR}


clean:
	find . -name "*.pyc" -exec rm "{}" \;
	find . -name "*~" -exec rm "{}" \;
	@true

all:
	@true
    
    
install-lib:
	@true


install: install-lib
	@true

