e24e757342
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.
18 lines
338 B
Makefile
Executable File
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
|