mirror of
https://github.com/ultimatepp/ultimatepp.git
synced 2026-05-17 14:16:10 -06:00
12 lines
232 B
Makefile
Executable file
12 lines
232 B
Makefile
Executable file
#!/usr/bin/make -f
|
|
|
|
DH_VERBOSE=1
|
|
|
|
override_dh_strip:
|
|
for P in $$(sed -n 's/^Package: \(.*\)-dbg$$/\1/p' debian/control); do \
|
|
dh_strip -v -p $${P} --dbg-package=$${P}-dbg; \
|
|
done
|
|
dh_strip -v --remaining-packages
|
|
|
|
%:
|
|
dh $@ -v
|