
This makes it easier to package ddclient, especially as enhancements are made such as unit tests or a man page. I chose GNU Autoconf and Automake mostly because I'm familiar with them, but also because I know they are well supported. Unfortunately they can be difficult to understand/maintain (especially Autoconf), so we may want to convert to something else later. Addresses #146, #147
5 lines
92 B
Bash
Executable file
5 lines
92 B
Bash
Executable file
#!/bin/sh
|
|
|
|
cd "${0%/*}" || exit 1
|
|
mkdir -p m4 build-aux || exit 1
|
|
exec autoreconf -fviW all
|