== Simple C program with autoconf/automake ==

Upstream package name: hello-c
Upstream version name: 1.0
Sources: hello.c

1. Create source files under ./hello-a-1.0/

 $ mkdir hello-c-1.0/
 $ cd hello-c-1.0/
 $ vim hello.c
 ...

=> step1

2. Scan source with autoscan

 $ autoscan

=> step2

3. make configure.ac and Makefile.am

 $ mv configure.scan configure.ac
 $ vim configure.ac
 ... package name and version ...
 $ vim Makefile.am
 ... build dependency

=> step3

4. make configure and Makefile.in ...

 $ autoreconf -ivf

=> step4

5. Configure

 $ ./configure

=> step5

6. "make dist" via debamake,
   package with explicit package name and autoreconf, and
   build source and binary packages

(parent directory name != package name)

 $ debmake -w autoreconf -p hello-auto -d -i debuild
 $ cd ..

=> step6
