1To build and install this program:
2
3./autogen.sh --prefix=/home/your_username/.local
4make install
5
6-------------
7Running the first line above creates the following files:
8
9aclocal.m4
10autom4te.cache
11config.log
12config.status
13configure
14hello-world.desktop
15install-sh
16missing
17Makefile.in
18Makefile
19
20Running "make install", installs the application in /home/your_username/.local/bin
21and installs the hello-world.desktop file in /home/your_username/.local/share/applications
22
23You can now run the application by typing "Hello World" in the Overview.
24
25----------------
26To uninstall, type:
27
28make uninstall
29
30----------------
31To create a tarball type:
32
33make distcheck
34
35This will create hello-world-1.0.tar.xz
36