mirror of
https://github.com/tsl0922/ttyd.git
synced 2025-12-22 20:04:19 +01:00
* debian: add debian dir for debian packaging. These instructions can be used to build semi-official debian packages. * d/control: fix typo * debian: set debhelper compat to v9; add vim-common as xxd alternative
13 lines
343 B
Makefile
Executable File
13 lines
343 B
Makefile
Executable File
#!/usr/bin/make -f
|
|
# See debhelper(7) (uncomment to enable)
|
|
# output every command that modifies files on the build system.
|
|
#export DH_VERBOSE = 1
|
|
|
|
# see FEATURE AREAS in dpkg-buildflags(1)
|
|
export DEB_BUILD_MAINT_OPTIONS = hardening=+all
|
|
export DEB_LDFLAGS_MAINT_APPEND = -Wl,--as-needed
|
|
|
|
# main packaging script based on dh7 syntax
|
|
%:
|
|
dh $@
|