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

..03-May-2022-

GNUmakefileH A D24-Feb-20061.7 KiB7753

MakefileH A D03-May-20221.7 KiB7751

NOTESH A D29-Dec-20055.4 KiB134109

READMEH A D24-Feb-20061.5 KiB6339

color.pixH A D15-Sep-19938.5 KiB136135

moon_iconH A D14-Sep-19933.2 KiB4746

nova.cH A D24-Feb-20062.6 KiB8840

schlyter.cH A D24-Feb-20067.6 KiB251123

xmoontool.1H A D24-Feb-20063.9 KiB119117

xmoontool.cH A D24-Feb-200640.4 KiB1,345868

README

1
2+------------------------------------+
3| 1. Installing with libnova support |
4+------------------------------------+
5If you have libnova installed with its default prefix "/usr/local"
6just do
7
8	make
9
10in the source directory to build the xmoontool binary. Then issue
11
12	make install
13
14as root to install the executable in /usr/X11R6/bin and the man page
15xmoontool.1 in /usr/X11R6/man/man1.
16
17In the case you have chosen a different prefix for libnova, specify
18this prefix for the above targets by setting the variable LOCALBASE
19appropriately. In other words, enter a command of the form
20
21	make LOCALBASE=<your_libnova_prefix> install
22
23to build and install xmoontool.
24
25
26+---------------------------------------+
27| 2. Installing without libnova support |
28+---------------------------------------+
29This means that you have to instruct `make` not to look for libnova
30on your system. Execute
31
32	make WITHOUT_LIBNOVA=yes
33
34to build, and
35
36	make WITHOUT_LIBNOVA=yes install
37
38as root to install the xmoontool executable and the man page with the
39prefix "/usr/X11R6".
40
41
42+-------------------+
43| 3. Deinstallation |
44+-------------------+
45Just enter
46
47	make uninstall
48
49to remove any previously installed xmoontool files.
50
51
52+-----------------------+
53| 4. Additional remarks |
54+-----------------------+
55Note that the supplied 'Makefile' is intended for BSD make, whereas the
56'GNUmakefile' is automatically chosen by GNU make. No other versions of
57make have been tested so far. Inspect/edit the most suitable makefile if
58you have special desires.
59
60
61Enjoy!
62
63