9 lines
140 B
Makefile
Executable file
9 lines
140 B
Makefile
Executable file
#!/usr/bin/make -f
|
|
%:
|
|
ifneq ($(shell dh -l | grep -xF translations),)
|
|
dh $@ --with python2,translations
|
|
else
|
|
dh $@ --with python2
|
|
endif
|
|
|
|
|