• Home
  • History
  • Annotate
Name Date Size #Lines LOC

..03-May-2022-

Makefile.amH A D13-Feb-2021303 126

READMEH A D13-Feb-2021697 3625

autogen.shH A D13-Feb-2021274 1910

configure.acH A D13-Feb-2021216 65

hello-world.desktop.inH A D13-Feb-2021219 1211

hello-world.pyH A D13-Feb-2021795 3520

README

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