Seems to introduce PNG support. From original change log:
0.1.4:
New option: -n, --nice
New option: --dir
Load images from a directory
0.1.3:
Bugfixes and optimisation release (use much less cpu).
Nothing new here.
26 lines
637 B
Makefile
26 lines
637 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` -DDESTDIR=\"$(DESTDIR)\"
|
|
|
|
OBJS = hot-babe.o loader.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
|
|
install -d $(DESTDIR)/share/hot-babe
|
|
install -d $(DESTDIR)/share/hot-babe/hb01
|
|
install $(INSTALL) hb01/* $(DESTDIR)/share/hot-babe/hb01
|