2010-08-05 10:44:52 -05:00
|
|
|
#!/usr/bin/make -f
|
|
|
|
SHELL=sh -e
|
|
|
|
|
|
|
|
%:
|
2015-06-01 04:50:29 -05:00
|
|
|
dh $@ --with python3
|
2010-08-05 10:44:52 -05:00
|
|
|
|
2015-10-03 16:54:23 -05:00
|
|
|
override_dh_auto_test:
|
|
|
|
./driver.py
|
|
|
|
|
2010-08-05 10:44:52 -05:00
|
|
|
clean:
|
|
|
|
rm -rf build *.egg-info
|
|
|
|
dh $@
|
|
|
|
|
|
|
|
override_dh_auto_install:
|
2015-10-03 16:54:23 -05:00
|
|
|
DESTDIR=debian/relational-cli make install-relational-cli
|
|
|
|
DESTDIR=debian/python3-relational make install-python3-relational
|
|
|
|
DESTDIR=debian/relational make install-relational
|