relational/debian/rules
Salvo 'LtWorf' Tomaselli e24e757342 Moved most of install logic to makefile
Makefile has again a make install target. The install targets
are split because it is easier for the rules file to install
the files for the different packages inside different destinations
directly.
2015-10-04 00:35:29 +02:00

18 lines
338 B
Makefile
Executable File

#!/usr/bin/make -f
SHELL=sh -e
%:
dh $@ --with python3
override_dh_auto_test:
./driver.py
clean:
rm -rf build *.egg-info
dh $@
override_dh_auto_install:
DESTDIR=debian/relational-cli make install-relational-cli
DESTDIR=debian/python3-relational make install-python3-relational
DESTDIR=debian/relational make install-relational