Some BeOS updates to Makefile.

This commit is contained in:
William Kendrick 2007-12-06 23:46:18 +00:00
parent acecdbef0b
commit c40cc5aad2

View file

@ -7,7 +7,7 @@
# bill@newbreedsoftware.com # bill@newbreedsoftware.com
# http://www.tuxpaint.org/ # http://www.tuxpaint.org/
# June 14, 2002 - December 4, 2007 # June 14, 2002 - December 6, 2007
# The version number, for release: # The version number, for release:
@ -250,24 +250,32 @@ olpc:
beos: beos:
make \ make \
PREFIX=/boot/develop/tools/gnupro \ PREFIX=./ \
BIN_PREFIX=./ \ BIN_PREFIX=./ \
DATA_PREFIX=./data \ DATA_PREFIX=./data \
DOC_PREFIX=./docs \ DOC_PREFIX=./docs \
MAN_PREFIX=./src \ MAN_PREFIX=./share/man \
CONFDIR=./src/ \ CONFDIR=./share/conf \
ICON_PREFIX=. \ ICON_PREFIX=. \
X11_ICON_PREFIX=. \ X11_ICON_PREFIX=. \
LOCALE_PREFIX=/boot/home/config/share/locale \ LOCALE_PREFIX=./share/locale \
NOSVGFLAG=NOSVG \
NOPANGOFLAG=NO_SDLPANGO \
SDL_PANGO_LIB= \
SVG_LIB= \
PAPER_LIB= \
IM_PREFIX=./src \ IM_PREFIX=./src \
SVG_LIB= SVG_CFLAGS= NOSVGFLAG=NOSVG \ SDL_CFLAGS="$(shell sdl-config --cflags)" \
NOPANGOFLAG=NO_SDLPANGO SDL_PANGO_LIB= \ SDL_LIBS="$(shell sdl-config --libs) -lSDL -lSDL_image -lSDL_ttf $(SDL_MIXER_LIB)" \
SDL_MIXER_LIB=-lSDL_mixer \
CFLAGS="-O1 -funroll-loops -fomit-frame-pointer -pipe -Wall" \ CFLAGS="-O1 -funroll-loops -fomit-frame-pointer -pipe -Wall" \
RSRC_CMD="xres -o tuxpaint tuxpaint.rsrc" \ RSRC_CMD="xres -o tuxpaint src/tuxpaint.rsrc" \
MIMESET_CMD="mimeset -f tuxpaint" \ MIMESET_CMD="mimeset -f tuxpaint" \
ARCH_LINKS="-lintl -lpng -lz -lbe" \ ARCH_LINKS="-L/boot/home/config/lib -lintl -lpng -lz -lbe -liconv" \
ARCH_HEADERS="src/BeOS_print.h" \ ARCH_HEADERS="src/BeOS_print.h" \
ARCH_LIBS="obj/BeOS_print.o" ARCH_LIBS="obj/BeOS_print.o" \
MAGIC_PREFIX=./lib/tuxpaint/plugins \
TARGET_PASSTHRU=beos
# "make win32" builds the program for Windows 2K/XP/Vista using MinGW/MSYS. # "make win32" builds the program for Windows 2K/XP/Vista using MinGW/MSYS.
# The DATA_, DOC_ and LOCALE_ prefixes are absolute paths. # The DATA_, DOC_ and LOCALE_ prefixes are absolute paths.