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
signature.asc
Description: OpenPGP digital signature
_______________________________________________ Bug-gnubg mailing list [email protected] http://lists.gnu.org/mailman/listinfo/bug-gnubg
