17 lines
210 B
Makefile
Executable File
17 lines
210 B
Makefile
Executable File
#!/usr/bin/make -f
|
|
|
|
export GO111MODULE=on
|
|
|
|
%:
|
|
# dh $@ --with autoreconf
|
|
dh $@
|
|
# ./configure --prefix=/usr
|
|
# dh_build
|
|
# dh_install
|
|
# dh_auto_clean
|
|
|
|
override_dh_auto_configure:
|
|
./configure --prefix=/usr
|
|
|
|
#EOF
|