bug-gnubg
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: [Bug-gnubg] FTGL


From: Øystein Johansen
Subject: Re: [Bug-gnubg] FTGL
Date: Wed, 14 Sep 2005 19:46:21 +0200
User-agent: Mozilla Thunderbird 1.0.6 (Windows/20050716)

Jon Kinsey wrote:
> I'm using windows and built with mingw and dev studio with no problems.

This is really strange. I try again today. And guess what? Today it
works here as well. The only thing I did was to recompile the same FTGL
code. No changes to the Makefile. In the gnubg build directory I did a
'make clean'.

Now I see the numbers on the cube and resignation flag. However, the
point numbers on the board edge are not filled.

An other thing: The cube numbers look really nice, but the resignation
flag numbers are not antianialised.

>  The numbers didn't display quite as nicely using the mingw build which
> I'll have a look at, but all the numbers show up fine.

I just can't figure out what's the difference today does?

I've attached my Makefile.

-Øystein

CXX = g++
BASEDIR=c:\mingw
GNUDIR=c:\gnubg
#LIBFLAGS=-mwindows
#CFLAGS=-fnative-struct -Wall -Os $(INCLUDE)
CPPFLAGS= -Wall -g -O3 $(INCLUDE)
RM=del
AR=ar cr
RANLIB=ranlib
CC=gcc

INCLUDE= -I../include -I/GTK/include -I/GTK/include/freetype2

TARGET=libftgl.a

SOURCE = $(wildcard *.cpp)

OBJECTS=$(patsubst %.cpp,%.o,$(SOURCE))

all: $(TARGET)
        @echo done

$(TARGET): $(OBJECTS)
        @echo creating lib
        $(AR) $(TARGET) $(OBJECTS)
        $(RANLIB) $(TARGET)
        
clean:
        $(RM) $(OBJECTS)
        @echo clean

Attachment: signature.asc
Description: OpenPGP digital signature


reply via email to

[Prev in Thread] Current Thread [Next in Thread]