== Simple C program with Makefile ==

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

This is the same source as example-0001-make-c.

But the source is located under a arbitural directory foo/ .

This builds package with a single command while explicitly specifying the
package name (-p) and upstream version (-u).

1. Create source files under ./foo/

 $ mkdir foo/
 $ cd foo/
 $ vim hello.c
 ...
 $ vim Makefile
 ...
 $ cd -


=> step1

2. Create upstream tarball, 
   make templates, and 
   build Debian source and binary packages
   (all in one command)

 $ cd foo/
 $ debmake -p hello-c -u 1.0 -t -i debmake
 $ cd -

=> step2

