8 lines
143 B
Makefile
Executable File
8 lines
143 B
Makefile
Executable File
#!/usr/bin/make -f
|
|
# -*- makefile -*-
|
|
|
|
WITH_PYTHON2 = $(shell test -f /usr/bin/dh_python2 && echo "--with python2")
|
|
|
|
%:
|
|
dh $@ ${WITH_PYTHON2}
|