c258a0fedd
This PR groups misc cleanup and changes from https://github.com/ooni/probe-cli/pull/331. * CLI/linux/build: add documentation * debian/.gitignore: ignore generated files * debian/TODO: unnecessary at this point * debian/ooniprobe-cli.service: remove commented out lines * debian/rules: remove unnecessary actions * make: reindent and fix spelling * smoketest.sh: don't run in verbose mode Part of https://github.com/ooni/probe/issues/1466
19 lines
235 B
Makefile
Executable File
19 lines
235 B
Makefile
Executable File
#!/usr/bin/make -f
|
|
|
|
export DH_VERBOSE=1
|
|
|
|
%:
|
|
dh $@
|
|
|
|
override_dh_auto_clean:
|
|
dh_auto_clean
|
|
|
|
override_dh_auto_build:
|
|
# The ooniprobe binary is provided
|
|
|
|
override_dh_dwz:
|
|
true
|
|
|
|
override_dh_auto_install:
|
|
dh_auto_install -- --no-source
|