1
0
mirror of https://github.com/gryf/wmtemp.git synced 2025-12-17 11:30:22 +01:00

Moved makefile to the top directory. Version bump.

This commit is contained in:
2017-12-11 10:02:55 -08:00
parent 2fbe3c59e5
commit 8a1776fe09
6 changed files with 6 additions and 8 deletions

View File

@@ -1,9 +1,8 @@
# By RedSeb 1999, Liverbugg 2002
SRC = src/wmtemp.c
SRC = wmtemp.c
EXE = wmtemp
EXE = src/wmtemp
OBJ = $(SRC:.c=.o)
@@ -23,11 +22,11 @@ $(OBJ): %.o : %.c
$(CC) $(CFLAGS) -c -o $@ $<
clean:
rm -rf $(EXE)
rm -rf *.o
rm -rf $(EXE) src/*.o
install:
$(INSTALL) $(EXE) /usr/local/bin/
uninstall:
rm -rf /usr/local/bin/$(EXE)

View File

@@ -10,12 +10,11 @@ Based on WMTempMon dockapp, although it was heavily reworked.
Compile
-------
To build the dockapp, you'll need `libdockap`_ it should be available in your
To build the dockapp, you'll need `libdockapp`_ it should be available in your
package repository. While you have it installed, perform the commands:
.. code:: shell-session
$ cd wmtemp
$ make
$ sudo make install

View File

@@ -3,7 +3,7 @@
* based on wmsensormon and other simple dockapps, although it doesn't use
* lmsensors, just provided information from kernel via /sys filesystem.
*
* version = 0.5
* version = 0.7
*
* licence: GPL2
*/