- New option: -N, --noNice With this option, the reniced processes aren't counted. This is usefull if you use seti@home or distributed.net, which always eat almost all the CPU. (patch from Pascal Terjan) - a man page! From the changelog (since 0.1.1): - added a missing #include <string.h> (reported by Gilles Cuesta)
23 lines
465 B
Makefile
23 lines
465 B
Makefile
# where to install this program
|
|
PREFIX = /usr/local
|
|
DESTDIR = ${PREFIX}
|
|
|
|
# optimization cflags
|
|
CFLAGS = -O2 -Wall -g `gtk-config --cflags` `gdk-pixbuf-config --cflags`
|
|
|
|
OBJS = hot-babe.o
|
|
CC = gcc
|
|
LIBS = `gtk-config --libs | sed "s/-lgtk//g"` `gdk-pixbuf-config --libs`
|
|
INSTALL = -m 755
|
|
|
|
all: hot-babe
|
|
|
|
hot-babe: $(OBJS)
|
|
$(CC) -o hot-babe $(OBJS) $(LIBS)
|
|
|
|
clean:
|
|
rm -f hot-babe *.o
|
|
|
|
install:
|
|
install -d $(DESTDIR)/bin
|
|
install $(INSTALL) hot-babe $(DESTDIR)/bin
|