maze5.zipthis is maze5-0.8.1 for gimp windows 32bits
if you want to compile yourself
you can use this makefile
copy it to the src folder
then make
Code:
CC=gcc
GIMPTOOL=gimptool-2.0
GIMP_LDFLAGS=`$(GIMPTOOL) --libs`
GIMP_CFLAGS=`$(GIMPTOOL) --cflags`
DEFS=-DWITH_CAIRO_PDF=1 -DWITH_CAIRO_SVG=1 -DWITH_CAIRO_IMAGE=1
#DEFS=
ADDITIONAL_CFLAGS=
ADDITIONAL_LDFLAGS=-lfreetype -lexpat -lpthread -lgimp-2.0 -lglib-2.0 -lz -lm
CFLAGS=-g -Wall -O3 $(DEFS) $(GIMP_CFLAGS) $(ADDITIONAL_CFLAGS)
LDFLAGS=$(GIMP_LDFLAGS) $(ADDITIONAL_LDFLAGS)
all: maze5 maze5S
install: maze5
$(GIMPTOOL) --install-bin maze5
maze5: gimp.o structure.o maze.o theta.o cell.o wall.o stroke.o render.o carve.o
$(CC) $(CFLAGS) -o $@ $^ $(LDFLAGS)
maze5S: main.o cairo.o structure.o maze.o theta.o cell.o wall.o stroke.o render.o carve.o
$(CC) $(CFLAGS) -o $@ $^ $(LDFLAGS)
clean:
-rm -f *~ *.o maze5.exe maze5S.exe