> make
> cd lua (or pthon, ruby, perl)

### python

build
> python setup.py build_ext
> python setup.py install --record installed

test
> run python test.py 

cleanup
> rm -rf build src jdepp.pyc
> make -f ../../test/Makefile clean

uninstall
> find installed | xargs rm -f

### ruby

build
> ruby extconf.rb
> make site-install

test
> run ruby test.rb

cleanup
> make clean
> make -f ../../test/Makefile clean

### perl

build
> perl Makefile.PL
> make install

test
> run perl test.pl

cleanup
> make clean
> make -f ../../test/Makefile clean

### lua / luajit

build
> make

test
> run lua test.lua

cleanup
> rm -rf jdepp_wrap.cxx *.o jdepp.so
> make -f ../../test/Makefile clean
