16 lines
217 B
Makefile
Executable file
16 lines
217 B
Makefile
Executable file
#!/usr/bin/make -f
|
|
|
|
|
|
%:
|
|
dh $@
|
|
|
|
# Collapse upstream changes file into single file
|
|
|
|
override_dh_auto_install:
|
|
rm --verbose calibrate
|
|
dh_auto_install
|
|
|
|
override_dh_auto_build:
|
|
cat CHANGES.* > changelog
|
|
dh_auto_build
|