Initial revision
670
Makefile
Normal file
|
|
@ -0,0 +1,670 @@
|
|||
# Makefile for tuxpaint
|
||||
|
||||
# Tux Paint - A simple drawing program for children.
|
||||
|
||||
# Copyright (c) 2003 by Bill Kendrick
|
||||
# bill@newbreedsoftware.com
|
||||
# http://www.newbreedsoftware.com/tuxpaint/
|
||||
|
||||
# June 14, 2002 - February 18, 2003
|
||||
|
||||
|
||||
# Where to install things:
|
||||
|
||||
PREFIX=/usr/local
|
||||
|
||||
|
||||
# Program:
|
||||
|
||||
BIN_PREFIX=$(PREFIX)/bin
|
||||
|
||||
|
||||
# Data:
|
||||
|
||||
DATA_PREFIX=$(PREFIX)/share/tuxpaint/
|
||||
|
||||
|
||||
# Docs and man page:
|
||||
|
||||
DOC_PREFIX=$(PREFIX)/share/doc/tuxpaint/
|
||||
MAN_PREFIX=$(PREFIX)/share/man/
|
||||
|
||||
|
||||
# 'System-wide' Config file:
|
||||
|
||||
ifeq ($(PREFIX),/usr)
|
||||
CONFDIR=/etc/tuxpaint
|
||||
else
|
||||
CONFDIR=$(PREFIX)/etc/tuxpaint
|
||||
endif
|
||||
|
||||
|
||||
# Commands useful to other arch's (e.g., BeOS)
|
||||
|
||||
RSRC_CMD=echo -n
|
||||
MIMESET_CMD=echo -n
|
||||
|
||||
|
||||
# Icons and launchers:
|
||||
|
||||
ICON_PREFIX=$(PREFIX)/share/pixmaps/
|
||||
X11_ICON_PREFIX=$(PREFIX)/X11R6/include/X11/pixmaps/
|
||||
GNOME_PREFIX=`gnome-config --prefix`
|
||||
KDE_PREFIX=`kde-config --install apps --expandvars`
|
||||
KDE_ICON_PREFIX=`kde-config --install icon --expandvars`
|
||||
|
||||
|
||||
# Locale files
|
||||
|
||||
LOCALE_PREFIX=$(PREFIX)/share/locale/
|
||||
# LOCALE_PREFIX=/usr/share/locale/
|
||||
|
||||
|
||||
# Built with sound by default (override with "make nosound")
|
||||
|
||||
NOSOUNDFLAG=__SOUND
|
||||
|
||||
|
||||
# Libraries, paths, and flags:
|
||||
|
||||
SDL_LIBS=$(shell sdl-config --libs) -lSDL_image -lSDL_ttf $(SDL_MIXER_LIB)
|
||||
SDL_MIXER_LIB=-lSDL_mixer
|
||||
SDL_CFLAGS=$(shell sdl-config --cflags)
|
||||
|
||||
|
||||
# The entire set of CFLAGS:
|
||||
|
||||
CFLAGS=-O2 -Wall $(SDL_CFLAGS) -DDATA_PREFIX=\"$(DATA_PREFIX)\" \
|
||||
-D$(NOSOUNDFLAG) -DDOC_PREFIX=\"$(DOC_PREFIX)\" \
|
||||
-DLOCALEDIR=\"$(LOCALE_PREFIX)\" -DCONFDIR=\"$(CONFDIR)\"
|
||||
|
||||
|
||||
# "make" with no arguments builds the program and man page from sources:
|
||||
|
||||
all: tuxpaint translations
|
||||
@echo
|
||||
@echo "--------------------------------------------------------------"
|
||||
@echo
|
||||
@echo "Done compiling."
|
||||
@echo "Now (probably as 'root' superuser), run 'make install'"
|
||||
@echo "to install Tux Paint."
|
||||
@echo
|
||||
|
||||
|
||||
|
||||
# "make nosound" builds the program with sound disabled, and man page,
|
||||
# from sources:
|
||||
|
||||
nosound:
|
||||
@echo
|
||||
@echo "Building with sound DISABLED"
|
||||
@echo
|
||||
make SDL_MIXER_LIB= NOSOUNDFLAG=NOSOUND
|
||||
|
||||
|
||||
# "make beos" builds the program for BeOS
|
||||
|
||||
beos:
|
||||
make \
|
||||
PREFIX=/boot/develop/tools/gnupro \
|
||||
BIN_PREFIX=./ \
|
||||
DATA_PREFIX=./data/ \
|
||||
DOC_PREFIX=./docs/ \
|
||||
MAN_PREFIX=./src/ \
|
||||
CONFDIR=./src/ \
|
||||
ICON_PREFIX=./
|
||||
X11_ICON_PREFIX=./ \
|
||||
LOCALE_PREFIX=/boot/home/config/share/locale/ \
|
||||
CFLAGS="-O1 -funroll-loops -fomit-frame-pointer -pipe -Wall \
|
||||
$(SDL_FLAGS) -DDATA_PREFIX=\"$(DATA_PREFIX)\" \
|
||||
-D$(NOSOUNDFLAG) -DDOC_PREFIX=\"$(DOC_PREFIX)\" \
|
||||
-DLOCALEDIR=\"$(LOCALE_PREFIX)\" \
|
||||
-DCONFDIR=\"$(CONFDIR)\"" \
|
||||
RSRC_CMD="xres -o tuxpaint tuxpaint.rsrc" \
|
||||
MIMESET_CMD="mimeset -f tuxpaint" \
|
||||
ARCH_LINKS="-lintl -lpng -lz -lbe" \
|
||||
ARCH_HEADERS="src/BeOS_Print.h" \
|
||||
ARCH_LIBS="obj/BeOS_print.o"
|
||||
|
||||
|
||||
# "make install" installs all of the various parts
|
||||
# (depending on the *PREFIX variables at the top, you probably need
|
||||
# to do this as superuser ("root"))
|
||||
|
||||
install: install-bin install-data install-man install-doc \
|
||||
install-gnome install-kde install-kde-icons \
|
||||
install-icon install-gettext install-importscript \
|
||||
install-default-config
|
||||
@echo
|
||||
@echo "--------------------------------------------------------------"
|
||||
@echo
|
||||
@echo "All done! Now (preferably NOT as 'root' superuser),"
|
||||
@echo "you can type the command 'tuxpaint' to run the program!!!"
|
||||
@echo
|
||||
@echo "For more information, see the 'tuxpaint' man page,"
|
||||
@echo "run 'tuxpaint --usage' or see $(DOC_PREFIX)README.txt"
|
||||
@echo
|
||||
@echo "Visit Tux Paint's home page for more information, updates"
|
||||
@echo "and to learn how you can help out!"
|
||||
@echo
|
||||
@echo " http://www.newbreedsoftware.com/tuxpaint/"
|
||||
@echo
|
||||
@echo "Enjoy!"
|
||||
@echo
|
||||
|
||||
|
||||
# "make install-beos" installs Tux Paint, but using BeOS settings
|
||||
|
||||
install-beos:
|
||||
make install \
|
||||
PREFIX=/boot/develop/tools/gnupro \
|
||||
BIN_PREFIX=./ \
|
||||
DATA_PREFIX=./data/ \
|
||||
DOC_PREFIX=./docs/ \
|
||||
MAN_PREFIX=./src/ \
|
||||
CONFDIR=./src/ \
|
||||
ICON_PREFIX=./
|
||||
X11_ICON_PREFIX=./ \
|
||||
LOCALE_PREFIX=/boot/home/config/share/locale/ \
|
||||
CFLAGS="-O1 -funroll-loops -fomit-frame-pointer -pipe -Wall \
|
||||
$(SDL_FLAGS) -DDATA_PREFIX=\"$(DATA_PREFIX)\" \
|
||||
-D$(NOSOUNDFLAG) -DDOC_PREFIX=\"$(DOC_PREFIX)\" \
|
||||
-DLOCALEDIR=\"$(LOCALE_PREFIX)\" \
|
||||
-DCONFDIR=\"$(CONFDIR)\"" \
|
||||
RSRC_CMD="xres -o tuxpaint tuxpaint.rsrc" \
|
||||
MIMESET_CMD="mimeset -f tuxpaint" \
|
||||
ARCH_LINKS="-lintl -lpng -lz -lbe" \
|
||||
ARCH_HEADERS="src/BeOS_Print.h" \
|
||||
ARCH_LIBS="obj/BeOS_print.o"
|
||||
|
||||
|
||||
# "make clean" deletes the program, the compiled objects and the
|
||||
# built man page (returns to factory archive, pretty much...)
|
||||
|
||||
clean:
|
||||
@echo
|
||||
@echo "Cleaning up the build directory! ($(PWD))"
|
||||
@-rm -f tuxpaint
|
||||
@-rm -f obj/*.o
|
||||
@if [ -d obj ]; then rmdir obj; fi
|
||||
@-rm -f trans/*.mo
|
||||
@if [ -d trans ]; then rmdir trans; fi
|
||||
@echo
|
||||
|
||||
|
||||
# "make uninstall" should remove the various parts from their
|
||||
# installation locations. BE SURE the *PREFIX variables at the top
|
||||
# are the same as they were when you installed, of course!!!
|
||||
|
||||
uninstall:
|
||||
-if [ "x$(GNOME_PREFIX)" != "x" ]; then \
|
||||
rm $(GNOME_PREFIX)/share/gnome/apps/Graphics/tuxpaint.desktop; \
|
||||
rm $(GNOME_PREFIX)/share/pixmaps/tuxpaint.png; \
|
||||
fi
|
||||
-if [ "x$(KDE_PREFIX)" != "x" ]; then \
|
||||
rm $(KDE_PREFIX)/Graphics/tuxpaint.desktop; \
|
||||
fi
|
||||
-rm $(ICON_PREFIX)tuxpaint.png
|
||||
-rm $(X11_ICON_PREFIX)tuxpaint.xpm
|
||||
-rm $(BIN_PREFIX)/tuxpaint
|
||||
-rm $(BIN_PREFIX)/tuxpaint-import
|
||||
-rm -r $(DATA_PREFIX)
|
||||
-rm -r $(DOC_PREFIX)
|
||||
-rm $(MAN_PREFIX)/man1/tuxpaint.1.gz
|
||||
-rm $(LOCALE_PREFIX)ca/LC_MESSAGES/tuxpaint.mo
|
||||
-rm $(LOCALE_PREFIX)cs/LC_MESSAGES/tuxpaint.mo
|
||||
-rm $(LOCALE_PREFIX)da/LC_MESSAGES/tuxpaint.mo
|
||||
-rm $(LOCALE_PREFIX)de/LC_MESSAGES/tuxpaint.mo
|
||||
-rm $(LOCALE_PREFIX)el/LC_MESSAGES/tuxpaint.mo
|
||||
-rm $(LOCALE_PREFIX)en_GB/LC_MESSAGES/tuxpaint.mo
|
||||
-rm $(LOCALE_PREFIX)es/LC_MESSAGES/tuxpaint.mo
|
||||
-rm $(LOCALE_PREFIX)fi/LC_MESSAGES/tuxpaint.mo
|
||||
-rm $(LOCALE_PREFIX)fr/LC_MESSAGES/tuxpaint.mo
|
||||
-rm $(LOCALE_PREFIX)hu/LC_MESSAGES/tuxpaint.mo
|
||||
-rm $(LOCALE_PREFIX)id/LC_MESSAGES/tuxpaint.mo
|
||||
-rm $(LOCALE_PREFIX)is/LC_MESSAGES/tuxpaint.mo
|
||||
-rm $(LOCALE_PREFIX)it/LC_MESSAGES/tuxpaint.mo
|
||||
-rm $(LOCALE_PREFIX)ja/LC_MESSAGES/tuxpaint.mo
|
||||
-rm $(LOCALE_PREFIX)ko/LC_MESSAGES/tuxpaint.mo
|
||||
-rm $(LOCALE_PREFIX)nl/LC_MESSAGES/tuxpaint.mo
|
||||
-rm $(LOCALE_PREFIX)nn/LC_MESSAGES/tuxpaint.mo
|
||||
-rm $(LOCALE_PREFIX)pl/LC_MESSAGES/tuxpaint.mo
|
||||
-rm $(LOCALE_PREFIX)pt/LC_MESSAGES/tuxpaint.mo
|
||||
-rm $(LOCALE_PREFIX)pt_BR/LC_MESSAGES/tuxpaint.mo
|
||||
-rm $(LOCALE_PREFIX)ro/LC_MESSAGES/tuxpaint.mo
|
||||
-rm $(LOCALE_PREFIX)sk/LC_MESSAGES/tuxpaint.mo
|
||||
-rm $(LOCALE_PREFIX)sv/LC_MESSAGES/tuxpaint.mo
|
||||
-rm $(LOCALE_PREFIX)tr/LC_MESSAGES/tuxpaint.mo
|
||||
-rm $(LOCALE_PREFIX)zh_CN/LC_MESSAGES/tuxpaint.mo
|
||||
-rm -f -r $(CONFDIR)
|
||||
|
||||
|
||||
# Install default config file:
|
||||
|
||||
install-default-config:
|
||||
@echo
|
||||
@echo "...Installing default config file..."
|
||||
@install -d $(CONFDIR)
|
||||
@cp src/tuxpaint.conf $(CONFDIR)
|
||||
@chmod 644 $(CONFDIR)/tuxpaint.conf
|
||||
|
||||
|
||||
# Install a launcher icon in the Gnome menu, under "Graphics"
|
||||
|
||||
install-gnome:
|
||||
@echo
|
||||
@echo "...Installing launcher icon into GNOME..."
|
||||
@if [ "x$(GNOME_PREFIX)" != "x" ]; then \
|
||||
install -d $(GNOME_PREFIX)/share/pixmaps; \
|
||||
cp data/images/icon.png $(GNOME_PREFIX)/share/pixmaps/tuxpaint.png; \
|
||||
chmod 644 $(GNOME_PREFIX)/share/pixmaps/tuxpaint.png; \
|
||||
install -d $(GNOME_PREFIX)/share/gnome/apps/Graphics; \
|
||||
cp src/tuxpaint.desktop $(GNOME_PREFIX)/share/gnome/apps/Graphics/; \
|
||||
chmod 644 $(GNOME_PREFIX)/share/gnome/apps/Graphics/tuxpaint.desktop; \
|
||||
fi
|
||||
|
||||
|
||||
# Install a launcher icon in the KDE menu...
|
||||
|
||||
install-kde:
|
||||
@echo
|
||||
@echo "...Installing launcher icon into KDE..."
|
||||
@if [ "x$(KDE_PREFIX)" != "x" ]; then \
|
||||
cp src/tuxpaint.desktop $(KDE_PREFIX)/Graphics/; \
|
||||
chmod 644 $(KDE_PREFIX)/Graphics/tuxpaint.desktop; \
|
||||
fi
|
||||
|
||||
|
||||
install-kde-icons:
|
||||
@echo "...Installing launcher icon graphics into KDE..."
|
||||
@if [ "x$(KDE_ICON_PREFIX)" != "x" ]; then \
|
||||
cp data/images/icon48x48.png \
|
||||
$(KDE_ICON_PREFIX)/hicolor/48x48/apps/tuxpaint.png; \
|
||||
cp data/images/icon32x32.png \
|
||||
$(KDE_ICON_PREFIX)/hicolor/32x32/apps/tuxpaint.png; \
|
||||
cp data/images/icon16x16.png \
|
||||
$(KDE_ICON_PREFIX)/hicolor/16x16/apps/tuxpaint.png; \
|
||||
fi
|
||||
|
||||
|
||||
# Install the PNG icon (for GNOME, KDE, etc.)
|
||||
# and the 24-color 32x32 XPM (for other Window managers):
|
||||
|
||||
install-icon:
|
||||
@echo
|
||||
@echo "...Installing launcher icon graphics..."
|
||||
@install -d $(ICON_PREFIX)
|
||||
@cp data/images/icon.png $(ICON_PREFIX)tuxpaint.png
|
||||
@chmod 644 $(ICON_PREFIX)tuxpaint.png
|
||||
@install -d $(X11_ICON_PREFIX)
|
||||
@cp data/images/icon32x32.xpm $(X11_ICON_PREFIX)tuxpaint.xpm
|
||||
@chmod 644 $(X11_ICON_PREFIX)tuxpaint.xpm
|
||||
|
||||
|
||||
# Install the program:
|
||||
|
||||
install-bin:
|
||||
@echo
|
||||
@echo "...Installing program itself..."
|
||||
@cp tuxpaint $(BIN_PREFIX)
|
||||
@chmod a+rx,g-w,o-w $(BIN_PREFIX)/tuxpaint
|
||||
|
||||
|
||||
# Install the import script:
|
||||
|
||||
install-importscript:
|
||||
@echo
|
||||
@echo "...Installing 'tuxpaint-import' script..."
|
||||
@cp src/tuxpaint-import.sh $(BIN_PREFIX)/tuxpaint-import
|
||||
@chmod a+rx,g-w,o-w $(BIN_PREFIX)/tuxpaint-import
|
||||
|
||||
|
||||
# Install the data (sound, graphics, fonts):
|
||||
|
||||
install-data:
|
||||
@echo
|
||||
@echo "...Installing data files..."
|
||||
@install -d $(DATA_PREFIX)
|
||||
@cp -R data/* $(DATA_PREFIX)
|
||||
@chmod -R a+rX,g-w,o-w $(DATA_PREFIX)
|
||||
|
||||
|
||||
# Install the translated text:
|
||||
|
||||
install-gettext:
|
||||
@echo
|
||||
@echo "...Installing translation files..."
|
||||
@#
|
||||
@echo " pt_BR ...Brazilian Portuguese..."
|
||||
@install -d $(LOCALE_PREFIX)pt_BR/LC_MESSAGES
|
||||
@cp trans/pt_br.mo $(LOCALE_PREFIX)pt_BR/LC_MESSAGES/tuxpaint.mo
|
||||
@chmod 644 $(LOCALE_PREFIX)pt_BR/LC_MESSAGES/tuxpaint.mo
|
||||
@#
|
||||
@echo " en_GB ...British English..."
|
||||
@install -d $(LOCALE_PREFIX)en_GB/LC_MESSAGES
|
||||
@cp trans/en_gb.mo $(LOCALE_PREFIX)en_GB/LC_MESSAGES/tuxpaint.mo
|
||||
@chmod 644 $(LOCALE_PREFIX)en_GB/LC_MESSAGES/tuxpaint.mo
|
||||
@#
|
||||
@echo " ca_ES ...Catalan..."
|
||||
@install -d $(LOCALE_PREFIX)ca/LC_MESSAGES
|
||||
@cp trans/ca.mo $(LOCALE_PREFIX)ca/LC_MESSAGES/tuxpaint.mo
|
||||
@chmod 644 $(LOCALE_PREFIX)ca/LC_MESSAGES/tuxpaint.mo
|
||||
@#
|
||||
@echo " zh_CN ...Chinese (Simplified)..."
|
||||
@install -d $(LOCALE_PREFIX)zh_CN/LC_MESSAGES
|
||||
@cp trans/zh_cn.mo $(LOCALE_PREFIX)zh_CN/LC_MESSAGES/tuxpaint.mo
|
||||
@chmod 644 $(LOCALE_PREFIX)zh_CN/LC_MESSAGES/tuxpaint.mo
|
||||
@#
|
||||
@echo " cs_CZ ...Czech..."
|
||||
@install -d $(LOCALE_PREFIX)cs/LC_MESSAGES
|
||||
@cp trans/cs.mo $(LOCALE_PREFIX)cs/LC_MESSAGES/tuxpaint.mo
|
||||
@chmod 644 $(LOCALE_PREFIX)cs/LC_MESSAGES/tuxpaint.mo
|
||||
@#
|
||||
@echo " da_DK ...Danish..."
|
||||
@install -d $(LOCALE_PREFIX)da/LC_MESSAGES
|
||||
@cp trans/da.mo $(LOCALE_PREFIX)da/LC_MESSAGES/tuxpaint.mo
|
||||
@chmod 644 $(LOCALE_PREFIX)da/LC_MESSAGES/tuxpaint.mo
|
||||
@#
|
||||
@echo " nl_NL ...Dutch..."
|
||||
@install -d $(LOCALE_PREFIX)nl/LC_MESSAGES
|
||||
@cp trans/nl.mo $(LOCALE_PREFIX)nl/LC_MESSAGES/tuxpaint.mo
|
||||
@chmod 644 $(LOCALE_PREFIX)nl/LC_MESSAGES/tuxpaint.mo
|
||||
@#
|
||||
@echo " fi_FI ...Finnish..."
|
||||
@install -d $(LOCALE_PREFIX)fi/LC_MESSAGES
|
||||
@cp trans/fi.mo $(LOCALE_PREFIX)fi/LC_MESSAGES/tuxpaint.mo
|
||||
@chmod 644 $(LOCALE_PREFIX)fi/LC_MESSAGES/tuxpaint.mo
|
||||
@#
|
||||
@echo " fr_FR ...French..."
|
||||
@install -d $(LOCALE_PREFIX)fr/LC_MESSAGES
|
||||
@cp trans/fr.mo $(LOCALE_PREFIX)fr/LC_MESSAGES/tuxpaint.mo
|
||||
@chmod 644 $(LOCALE_PREFIX)fr/LC_MESSAGES/tuxpaint.mo
|
||||
@#
|
||||
@echo " de_DE ...German..."
|
||||
@install -d $(LOCALE_PREFIX)de/LC_MESSAGES
|
||||
@cp trans/de.mo $(LOCALE_PREFIX)de/LC_MESSAGES/tuxpaint.mo
|
||||
@chmod 644 $(LOCALE_PREFIX)de/LC_MESSAGES/tuxpaint.mo
|
||||
@#
|
||||
@echo " el_GR ...Greek..."
|
||||
@install -d $(LOCALE_PREFIX)el/LC_MESSAGES
|
||||
@cp trans/el.mo $(LOCALE_PREFIX)el/LC_MESSAGES/tuxpaint.mo
|
||||
@chmod 644 $(LOCALE_PREFIX)el/LC_MESSAGES/tuxpaint.mo
|
||||
@#
|
||||
@echo " hu_HU ...Hungarian..."
|
||||
@install -d $(LOCALE_PREFIX)hu/LC_MESSAGES
|
||||
@cp trans/hu.mo $(LOCALE_PREFIX)hu/LC_MESSAGES/tuxpaint.mo
|
||||
@chmod 644 $(LOCALE_PREFIX)hu/LC_MESSAGES/tuxpaint.mo
|
||||
@#
|
||||
@echo " is_IS ...Icelandic..."
|
||||
@install -d $(LOCALE_PREFIX)is/LC_MESSAGES
|
||||
@cp trans/is.mo $(LOCALE_PREFIX)is/LC_MESSAGES/tuxpaint.mo
|
||||
@chmod 644 $(LOCALE_PREFIX)is/LC_MESSAGES/tuxpaint.mo
|
||||
@#
|
||||
@echo " id_ID ...Indonesian..."
|
||||
@install -d $(LOCALE_PREFIX)id/LC_MESSAGES
|
||||
@cp trans/id.mo $(LOCALE_PREFIX)id/LC_MESSAGES/tuxpaint.mo
|
||||
@chmod 644 $(LOCALE_PREFIX)id/LC_MESSAGES/tuxpaint.mo
|
||||
@#
|
||||
@echo " it_IT ...Italian..."
|
||||
@install -d $(LOCALE_PREFIX)it/LC_MESSAGES
|
||||
@cp trans/it.mo $(LOCALE_PREFIX)it/LC_MESSAGES/tuxpaint.mo
|
||||
@chmod 644 $(LOCALE_PREFIX)it/LC_MESSAGES/tuxpaint.mo
|
||||
@#
|
||||
@echo " ja_JP ...Japanese..."
|
||||
@install -d $(LOCALE_PREFIX)ja/LC_MESSAGES
|
||||
@cp trans/ja.mo $(LOCALE_PREFIX)ja/LC_MESSAGES/tuxpaint.mo
|
||||
@chmod 644 $(LOCALE_PREFIX)ja/LC_MESSAGES/tuxpaint.mo
|
||||
@#
|
||||
@echo " ko_KR ...Korean..."
|
||||
@install -d $(LOCALE_PREFIX)ko/LC_MESSAGES
|
||||
@cp trans/ko.mo $(LOCALE_PREFIX)ko/LC_MESSAGES/tuxpaint.mo
|
||||
@chmod 644 $(LOCALE_PREFIX)ko/LC_MESSAGES/tuxpaint.mo
|
||||
@#
|
||||
@echo " nn_NO ...Norwegian Nynorsk..."
|
||||
@install -d $(LOCALE_PREFIX)nn/LC_MESSAGES
|
||||
@cp trans/nn.mo $(LOCALE_PREFIX)nn/LC_MESSAGES/tuxpaint.mo
|
||||
@chmod 644 $(LOCALE_PREFIX)nn/LC_MESSAGES/tuxpaint.mo
|
||||
@#
|
||||
@echo " pl_PL ...Polish..."
|
||||
@install -d $(LOCALE_PREFIX)pl/LC_MESSAGES
|
||||
@cp trans/pl.mo $(LOCALE_PREFIX)pl/LC_MESSAGES/tuxpaint.mo
|
||||
@chmod 644 $(LOCALE_PREFIX)pl/LC_MESSAGES/tuxpaint.mo
|
||||
@#
|
||||
@echo " pt_PT ...Portuguese..."
|
||||
@install -d $(LOCALE_PREFIX)pt/LC_MESSAGES
|
||||
@cp trans/pt.mo $(LOCALE_PREFIX)pt/LC_MESSAGES/tuxpaint.mo
|
||||
@chmod 644 $(LOCALE_PREFIX)pt/LC_MESSAGES/tuxpaint.mo
|
||||
@#
|
||||
@echo " ro_RO ...Romanian..."
|
||||
@install -d $(LOCALE_PREFIX)ro/LC_MESSAGES
|
||||
@cp trans/ro.mo $(LOCALE_PREFIX)ro/LC_MESSAGES/tuxpaint.mo
|
||||
@chmod 644 $(LOCALE_PREFIX)ro/LC_MESSAGES/tuxpaint.mo
|
||||
@#
|
||||
@echo " sk_SK ...Slovak..."
|
||||
@install -d $(LOCALE_PREFIX)sk/LC_MESSAGES
|
||||
@cp trans/sk.mo $(LOCALE_PREFIX)sk/LC_MESSAGES/tuxpaint.mo
|
||||
@chmod 644 $(LOCALE_PREFIX)sk/LC_MESSAGES/tuxpaint.mo
|
||||
@#
|
||||
@echo " es_ES ...Spanish..."
|
||||
@install -d $(LOCALE_PREFIX)es/LC_MESSAGES
|
||||
@cp trans/es.mo $(LOCALE_PREFIX)es/LC_MESSAGES/tuxpaint.mo
|
||||
@chmod 644 $(LOCALE_PREFIX)es/LC_MESSAGES/tuxpaint.mo
|
||||
@#
|
||||
@echo " sv_SE ...Swedish..."
|
||||
@install -d $(LOCALE_PREFIX)sv/LC_MESSAGES
|
||||
@cp trans/sv.mo $(LOCALE_PREFIX)sv/LC_MESSAGES/tuxpaint.mo
|
||||
@chmod 644 $(LOCALE_PREFIX)sv/LC_MESSAGES/tuxpaint.mo
|
||||
@#
|
||||
@echo " tr_TR ...Turkish..."
|
||||
@install -d $(LOCALE_PREFIX)tr/LC_MESSAGES
|
||||
@cp trans/tr.mo $(LOCALE_PREFIX)tr/LC_MESSAGES/tuxpaint.mo
|
||||
@chmod 644 $(LOCALE_PREFIX)tr/LC_MESSAGES/tuxpaint.mo
|
||||
|
||||
|
||||
# Install the text documentation:
|
||||
|
||||
install-doc:
|
||||
@echo
|
||||
@echo "...Installing documentation..."
|
||||
@install -d $(DOC_PREFIX)
|
||||
@cp -R docs/* $(DOC_PREFIX)
|
||||
@chmod a=rX,g=rX,o=rwX $(DOC_PREFIX)
|
||||
|
||||
|
||||
# Install the man page:
|
||||
|
||||
install-man:
|
||||
@echo
|
||||
@echo "...Installing man pages..."
|
||||
@# man1 directory...
|
||||
@install -d $(MAN_PREFIX)/man1/
|
||||
@# tuxpaint.1
|
||||
@cp src/tuxpaint.1 $(MAN_PREFIX)/man1/
|
||||
@gzip -f $(MAN_PREFIX)/man1/tuxpaint.1
|
||||
@chmod a+rx,g-w,o-w $(MAN_PREFIX)/man1/tuxpaint.1.gz
|
||||
@# tuxpaint-import.1
|
||||
@cp src/tuxpaint-import.1 $(MAN_PREFIX)/man1/
|
||||
@gzip -f $(MAN_PREFIX)/man1/tuxpaint-import.1
|
||||
@chmod a+rx,g-w,o-w $(MAN_PREFIX)/man1/tuxpaint-import.1.gz
|
||||
|
||||
|
||||
# Build the program!
|
||||
|
||||
tuxpaint: obj/tuxpaint.o $(ARCH_LIBS)
|
||||
@echo
|
||||
@echo "...Linking Tux Paint..."
|
||||
@$(CC) $(CFLAGS) -o tuxpaint obj/tuxpaint.o $(ARCH_LIBS) $(SDL_LIBS) \
|
||||
-lm $(ARCH_LINKS)
|
||||
@$(RSRC_CMD)
|
||||
@$(MIMESET_CMD)
|
||||
|
||||
|
||||
# Build the object for the program!
|
||||
|
||||
obj/tuxpaint.o: src/tuxpaint.c obj \
|
||||
src/tools.h src/titles.h src/colors.h src/shapes.h \
|
||||
src/magic.h src/sounds.h src/tip_tux.h src/great.h \
|
||||
src/mouse/arrow.xbm src/mouse/arrow-mask.xbm \
|
||||
src/mouse/hand.xbm src/mouse/hand-mask.xbm \
|
||||
src/mouse/insertion.xbm src/mouse/insertion-mask.xbm \
|
||||
src/mouse/wand.xbm src/mouse/wand-mask.xbm \
|
||||
src/mouse/brush.xbm src/mouse/brush-mask.xbm \
|
||||
src/mouse/crosshair.xbm src/mouse/crosshair-mask.xbm \
|
||||
src/mouse/rotate.xbm src/mouse/rotate-mask.xbm \
|
||||
src/mouse/tiny.xbm src/mouse/tiny-mask.xbm \
|
||||
src/mouse/watch.xbm src/mouse/watch-mask.xbm \
|
||||
src/mouse/up.xbm src/mouse/up-mask.xbm \
|
||||
src/mouse/down.xbm src/mouse/down-mask.xbm \
|
||||
$(ARCH_HEADERS)
|
||||
@echo
|
||||
@echo "...Compiling Tux Paint from source..."
|
||||
@$(CC) $(CFLAGS) -c src/tuxpaint.c -o obj/tuxpaint.o
|
||||
|
||||
|
||||
obj/BeOS_Print.o: src/BeOS_Print.cpp obj src/BeOS_print.h
|
||||
@echo
|
||||
@echo "...Compiling BeOS print support..."
|
||||
@$(CC) $(CFLAGS) -c src/BeOS_print.cpp -o obj/BeOS_print.o
|
||||
|
||||
|
||||
# Build the translation files for gettext
|
||||
|
||||
translations: trans \
|
||||
trans/ca.mo \
|
||||
trans/cs.mo \
|
||||
trans/da.mo \
|
||||
trans/de.mo \
|
||||
trans/el.mo \
|
||||
trans/en_gb.mo \
|
||||
trans/es.mo \
|
||||
trans/fi.mo \
|
||||
trans/fr.mo \
|
||||
trans/hu.mo \
|
||||
trans/id.mo \
|
||||
trans/is.mo \
|
||||
trans/it.mo \
|
||||
trans/ja.mo \
|
||||
trans/ko.mo \
|
||||
trans/nl.mo \
|
||||
trans/nn.mo \
|
||||
trans/pt_br.mo \
|
||||
trans/pt.mo \
|
||||
trans/pl.mo \
|
||||
trans/ro.mo \
|
||||
trans/sk.mo \
|
||||
trans/sv.mo \
|
||||
trans/tr.mo \
|
||||
trans/zh_cn.mo
|
||||
|
||||
trans:
|
||||
@echo
|
||||
@echo "...Preparing translation files..."
|
||||
@mkdir trans
|
||||
|
||||
trans/ca.mo: src/messages/ca.po
|
||||
@echo " ca_ES ...Catalan..."
|
||||
@msgfmt src/messages/ca.po -o trans/ca.mo
|
||||
|
||||
trans/cs.mo: src/messages/cs.po
|
||||
@echo " cs_CZ ...Czech..."
|
||||
@msgfmt src/messages/cs.po -o trans/cs.mo
|
||||
|
||||
trans/da.mo: src/messages/da.po
|
||||
@echo " da_DK ...Danish..."
|
||||
@msgfmt src/messages/da.po -o trans/da.mo
|
||||
|
||||
trans/de.mo: src/messages/de.po
|
||||
@echo " de_DE ...German..."
|
||||
@msgfmt src/messages/de.po -o trans/de.mo
|
||||
|
||||
trans/el.mo: src/messages/el.po
|
||||
@echo " el_GR ...Greek..."
|
||||
@msgfmt src/messages/el.po -o trans/el.mo
|
||||
|
||||
trans/en_gb.mo: src/messages/en_gb.po
|
||||
@echo " en_GB ...British English..."
|
||||
@msgfmt src/messages/en_gb.po -o trans/en_gb.mo
|
||||
|
||||
trans/es.mo: src/messages/es.po
|
||||
@echo " es_ES ...Spanish..."
|
||||
@msgfmt src/messages/es.po -o trans/es.mo
|
||||
|
||||
trans/fi.mo: src/messages/fi.po
|
||||
@echo " fi_FI ...Finnish..."
|
||||
@msgfmt src/messages/fi.po -o trans/fi.mo
|
||||
|
||||
trans/fr.mo: src/messages/fr.po
|
||||
@echo " fr_FR ...French..."
|
||||
@msgfmt src/messages/fr.po -o trans/fr.mo
|
||||
|
||||
trans/hu.mo: src/messages/hu.po
|
||||
@echo " hu_HU ...Hungarian..."
|
||||
@msgfmt src/messages/hu.po -o trans/hu.mo
|
||||
|
||||
trans/id.mo: src/messages/id.po
|
||||
@echo " id_ID ...Indonesian..."
|
||||
@msgfmt src/messages/id.po -o trans/id.mo
|
||||
|
||||
trans/is.mo: src/messages/is.po
|
||||
@echo " is_IS ...Icelandic..."
|
||||
@msgfmt src/messages/is.po -o trans/is.mo
|
||||
|
||||
trans/it.mo: src/messages/it.po
|
||||
@echo " it_IT ...Italian..."
|
||||
@msgfmt src/messages/it.po -o trans/it.mo
|
||||
|
||||
trans/ja.mo: src/messages/ja.po
|
||||
@echo " ja_JP ...Japanese..."
|
||||
@msgfmt src/messages/ja.po -o trans/ja.mo
|
||||
|
||||
trans/ko.mo: src/messages/ko.po
|
||||
@echo " ko_KR ...Korean..."
|
||||
@msgfmt src/messages/ko.po -o trans/ko.mo
|
||||
|
||||
trans/nl.mo: src/messages/nl.po
|
||||
@echo " nl_NL ...Dutch..."
|
||||
@msgfmt src/messages/nl.po -o trans/nl.mo
|
||||
|
||||
trans/nn.mo: src/messages/nn.po
|
||||
@echo " nn_NO ...Norwegian..."
|
||||
@msgfmt src/messages/nn.po -o trans/nn.mo
|
||||
|
||||
trans/pl.mo: src/messages/pl.po
|
||||
@echo " pl_PL ...Polish..."
|
||||
@msgfmt src/messages/pl.po -o trans/pl.mo
|
||||
|
||||
trans/pt.mo: src/messages/pt.po
|
||||
@echo " pt_PT ...Portuguese..."
|
||||
@msgfmt src/messages/pt.po -o trans/pt.mo
|
||||
|
||||
trans/pt_br.mo: src/messages/pt_br.po
|
||||
@echo " pt_BR ...Brazilian Portuguese..."
|
||||
@msgfmt src/messages/pt_br.po -o trans/pt_br.mo
|
||||
|
||||
trans/ro.mo: src/messages/ro.po
|
||||
@echo " ro_RO ...Romanian..."
|
||||
@msgfmt src/messages/ro.po -o trans/ro.mo
|
||||
|
||||
trans/sk.mo: src/messages/sk.po
|
||||
@echo " sk_SK ...Slovak..."
|
||||
@msgfmt src/messages/sk.po -o trans/sk.mo
|
||||
|
||||
trans/sv.mo: src/messages/sv.po
|
||||
@echo " sv_SE ...Swedish..."
|
||||
@msgfmt src/messages/sv.po -o trans/sv.mo
|
||||
|
||||
trans/tr.mo: src/messages/tr.po
|
||||
@echo " tr_TR ...Turkish..."
|
||||
@msgfmt src/messages/tr.po -o trans/tr.mo
|
||||
|
||||
trans/zh_cn.mo: src/messages/zh_cn.po
|
||||
@echo " zh_CN ...Chinese..."
|
||||
@msgfmt src/messages/zh_cn.po -o trans/zh_cn.mo
|
||||
|
||||
|
||||
|
||||
# Make the "obj" directory to throw the object(s) into:
|
||||
|
||||
obj:
|
||||
@mkdir obj
|
||||
|
||||
BIN
data/brushes/round_06.png
Normal file
|
After Width: | Height: | Size: 163 B |
BIN
data/brushes/round_12.png
Normal file
|
After Width: | Height: | Size: 201 B |
BIN
data/brushes/round_24.png
Normal file
|
After Width: | Height: | Size: 354 B |
BIN
data/brushes/round_36.png
Normal file
|
After Width: | Height: | Size: 436 B |
BIN
data/brushes/round_fuzz.png
Normal file
|
After Width: | Height: | Size: 416 B |
BIN
data/brushes/round_seethru.png
Normal file
|
After Width: | Height: | Size: 407 B |
BIN
data/brushes/slash_10_lt.png
Normal file
|
After Width: | Height: | Size: 292 B |
BIN
data/brushes/slash_10_rt.png
Normal file
|
After Width: | Height: | Size: 286 B |
BIN
data/brushes/slash_16_lt.png
Normal file
|
After Width: | Height: | Size: 374 B |
BIN
data/brushes/slash_16_rt.png
Normal file
|
After Width: | Height: | Size: 349 B |
BIN
data/brushes/slash_20_lt.png
Normal file
|
After Width: | Height: | Size: 468 B |
BIN
data/brushes/slash_20_rt.png
Normal file
|
After Width: | Height: | Size: 408 B |
BIN
data/brushes/spray.png
Normal file
|
After Width: | Height: | Size: 706 B |
BIN
data/brushes/x.png
Normal file
|
After Width: | Height: | Size: 225 B |
BIN
data/fonts/default_font.ttf
Normal file
BIN
data/fonts/efont_serif.ttf
Normal file
BIN
data/fonts/efont_serif_b.ttf
Normal file
BIN
data/fonts/efont_serif_bi.ttf
Normal file
BIN
data/fonts/efont_serif_i.ttf
Normal file
BIN
data/images/icon-win32.png
Normal file
|
After Width: | Height: | Size: 1.2 KiB |
BIN
data/images/icon.png
Normal file
|
After Width: | Height: | Size: 2.2 KiB |
BIN
data/images/icon16x16.png
Normal file
|
After Width: | Height: | Size: 629 B |
BIN
data/images/icon32x32.png
Normal file
|
After Width: | Height: | Size: 1.2 KiB |
49
data/images/icon32x32.xpm
Normal file
|
|
@ -0,0 +1,49 @@
|
|||
/* XPM */
|
||||
static char * icon32x32_xpm[] = {
|
||||
"32 32 14 1",
|
||||
" c None",
|
||||
". c #000000",
|
||||
"+ c #FFFF00",
|
||||
"@ c #191919",
|
||||
"# c #7F7F00",
|
||||
"$ c #333333",
|
||||
"% c #666667",
|
||||
"& c #4C4C4C",
|
||||
"* c #B2B2B2",
|
||||
"= c #FFFFFF",
|
||||
"- c #CCCCCC",
|
||||
"; c #E5E5E5",
|
||||
"> c #999999",
|
||||
", c #7F7F7F",
|
||||
"..... ..... ... ... ",
|
||||
".+++. .+++.. .+@ .+. ",
|
||||
"..#.....@..@..#.##.......@..#.. ",
|
||||
" .#@#.#.##.##.#@##.##@#@##..##. ",
|
||||
" .+.+.+..+++..+.+@+@+@+@+.+.+.. ",
|
||||
" .+.+.+..+++.@++@++.+.+.+@+.+.. ",
|
||||
" .#@#@#@##@##.#..##.#.#.#.#@##..",
|
||||
" .+..++.++@++.+...+++@+@+.+@@++.",
|
||||
" ............... .......@@......",
|
||||
" @@.......@@ ",
|
||||
" @$%$..@@...@ ",
|
||||
" &*=*@%-*@..@ ",
|
||||
"$@@@@@@@ %;--%;==%..@ ",
|
||||
"@....@@@@ >*&*>;==%..@@ ",
|
||||
"......... @-;-**$-;$...@ ",
|
||||
"........@@ @$#&%>%;>;-@...@ ",
|
||||
".........@@ ##+#++##,--&....@ ",
|
||||
"..........@@ #++++++++&$@....@@",
|
||||
"@..........@@@####+++++#@.....@@",
|
||||
" @@.........@@+#$+++++++#......@",
|
||||
" @@@........@#+++++++++#......@",
|
||||
" @@@......@@#++++++++@......@",
|
||||
" @@.......@##+++++#.......@",
|
||||
" $@........@####$@.......@",
|
||||
" @@.......@@@@...........",
|
||||
" @@.....$>-*>$..........",
|
||||
" @@..@-====;$...@.....",
|
||||
" @@..%======*@.$>.....",
|
||||
" @@..*======;$.$-@....",
|
||||
" @@..$-======;&..*%....",
|
||||
" @@..@-========%..$*@...",
|
||||
" @@.@>=========>...%%..."};
|
||||
BIN
data/images/icon48x48.png
Normal file
|
After Width: | Height: | Size: 1.9 KiB |
BIN
data/images/magic/blocks.png
Normal file
|
After Width: | Height: | Size: 211 B |
BIN
data/images/magic/blur.png
Normal file
|
After Width: | Height: | Size: 303 B |
BIN
data/images/magic/chalk.png
Normal file
|
After Width: | Height: | Size: 786 B |
BIN
data/images/magic/drip.png
Normal file
|
After Width: | Height: | Size: 523 B |
BIN
data/images/magic/fade.png
Normal file
|
After Width: | Height: | Size: 615 B |
BIN
data/images/magic/fill.png
Normal file
|
After Width: | Height: | Size: 593 B |
BIN
data/images/magic/flip.png
Normal file
|
After Width: | Height: | Size: 217 B |
BIN
data/images/magic/mirror.png
Normal file
|
After Width: | Height: | Size: 780 B |
BIN
data/images/magic/negative.png
Normal file
|
After Width: | Height: | Size: 554 B |
BIN
data/images/magic/rainbow.png
Normal file
|
After Width: | Height: | Size: 971 B |
BIN
data/images/magic/sparkles.png
Normal file
|
After Width: | Height: | Size: 970 B |
BIN
data/images/magic/thick.png
Normal file
|
After Width: | Height: | Size: 462 B |
BIN
data/images/magic/thin.png
Normal file
|
After Width: | Height: | Size: 342 B |
BIN
data/images/shapes/circle.png
Normal file
|
After Width: | Height: | Size: 341 B |
BIN
data/images/shapes/circle_f.png
Normal file
|
After Width: | Height: | Size: 317 B |
BIN
data/images/shapes/diamond.png
Normal file
|
After Width: | Height: | Size: 471 B |
BIN
data/images/shapes/diamond_f.png
Normal file
|
After Width: | Height: | Size: 449 B |
BIN
data/images/shapes/oval.png
Normal file
|
After Width: | Height: | Size: 285 B |
BIN
data/images/shapes/oval_f.png
Normal file
|
After Width: | Height: | Size: 252 B |
BIN
data/images/shapes/pentagon.png
Normal file
|
After Width: | Height: | Size: 288 B |
BIN
data/images/shapes/pentagon_f.png
Normal file
|
After Width: | Height: | Size: 247 B |
BIN
data/images/shapes/rectangle.png
Normal file
|
After Width: | Height: | Size: 162 B |
BIN
data/images/shapes/rectangle_f.png
Normal file
|
After Width: | Height: | Size: 151 B |
BIN
data/images/shapes/square.png
Normal file
|
After Width: | Height: | Size: 165 B |
BIN
data/images/shapes/square_f.png
Normal file
|
After Width: | Height: | Size: 154 B |
BIN
data/images/shapes/triangle.png
Normal file
|
After Width: | Height: | Size: 285 B |
BIN
data/images/shapes/triangle_f.png
Normal file
|
After Width: | Height: | Size: 247 B |
BIN
data/images/title.png
Normal file
|
After Width: | Height: | Size: 78 KiB |
BIN
data/images/tools/brush.png
Normal file
|
After Width: | Height: | Size: 397 B |
BIN
data/images/tools/eraser.png
Normal file
|
After Width: | Height: | Size: 521 B |
BIN
data/images/tools/lines.png
Normal file
|
After Width: | Height: | Size: 476 B |
BIN
data/images/tools/magic.png
Normal file
|
After Width: | Height: | Size: 691 B |
BIN
data/images/tools/new.png
Normal file
|
After Width: | Height: | Size: 569 B |
BIN
data/images/tools/open.png
Normal file
|
After Width: | Height: | Size: 1.1 KiB |
BIN
data/images/tools/print.png
Normal file
|
After Width: | Height: | Size: 556 B |
BIN
data/images/tools/quit.png
Normal file
|
After Width: | Height: | Size: 475 B |
BIN
data/images/tools/redo.png
Normal file
|
After Width: | Height: | Size: 847 B |
BIN
data/images/tools/save.png
Normal file
|
After Width: | Height: | Size: 908 B |
BIN
data/images/tools/shapes.png
Normal file
|
After Width: | Height: | Size: 294 B |
BIN
data/images/tools/stamp.png
Normal file
|
After Width: | Height: | Size: 482 B |
BIN
data/images/tools/text.png
Normal file
|
After Width: | Height: | Size: 446 B |
BIN
data/images/tools/undo.png
Normal file
|
After Width: | Height: | Size: 1 KiB |
BIN
data/images/tux/bored.png
Normal file
|
After Width: | Height: | Size: 2.8 KiB |
BIN
data/images/tux/default.png
Normal file
|
After Width: | Height: | Size: 1.6 KiB |
BIN
data/images/tux/great.png
Normal file
|
After Width: | Height: | Size: 2.2 KiB |
BIN
data/images/tux/kiss.png
Normal file
|
After Width: | Height: | Size: 2.5 KiB |
BIN
data/images/tux/oops.png
Normal file
|
After Width: | Height: | Size: 1.3 KiB |
BIN
data/images/tux/wait.png
Normal file
|
After Width: | Height: | Size: 2.6 KiB |
BIN
data/images/ui/back.png
Normal file
|
After Width: | Height: | Size: 2.6 KiB |
BIN
data/images/ui/btn_down.png
Normal file
|
After Width: | Height: | Size: 2.3 KiB |
BIN
data/images/ui/btn_off.png
Normal file
|
After Width: | Height: | Size: 697 B |
BIN
data/images/ui/btn_up.png
Normal file
|
After Width: | Height: | Size: 1.8 KiB |
BIN
data/images/ui/color_btn_down.png
Normal file
|
After Width: | Height: | Size: 1.4 KiB |
BIN
data/images/ui/color_btn_up.png
Normal file
|
After Width: | Height: | Size: 1.7 KiB |
BIN
data/images/ui/cursor_down.png
Normal file
|
After Width: | Height: | Size: 3.4 KiB |
BIN
data/images/ui/cursor_down_large.png
Normal file
|
After Width: | Height: | Size: 6.9 KiB |
BIN
data/images/ui/cursor_up.png
Normal file
|
After Width: | Height: | Size: 2.9 KiB |
BIN
data/images/ui/cursor_up_large.png
Normal file
|
After Width: | Height: | Size: 3.7 KiB |
BIN
data/images/ui/erase.png
Normal file
|
After Width: | Height: | Size: 3.3 KiB |
BIN
data/images/ui/no.png
Normal file
|
After Width: | Height: | Size: 3 KiB |
BIN
data/images/ui/no_title.png
Normal file
|
After Width: | Height: | Size: 1.2 KiB |
BIN
data/images/ui/no_title_large.png
Normal file
|
After Width: | Height: | Size: 1.4 KiB |
BIN
data/images/ui/open.png
Normal file
|
After Width: | Height: | Size: 3.4 KiB |
BIN
data/images/ui/paintcan.png
Normal file
|
After Width: | Height: | Size: 2.7 KiB |
BIN
data/images/ui/progress.png
Normal file
|
After Width: | Height: | Size: 830 B |
BIN
data/images/ui/scroll_down.png
Normal file
|
After Width: | Height: | Size: 2.5 KiB |
BIN
data/images/ui/scroll_down_off.png
Normal file
|
After Width: | Height: | Size: 934 B |
BIN
data/images/ui/scroll_up.png
Normal file
|
After Width: | Height: | Size: 2.5 KiB |
BIN
data/images/ui/scroll_up_off.png
Normal file
|
After Width: | Height: | Size: 921 B |
BIN
data/images/ui/sparkles-old.png
Normal file
|
After Width: | Height: | Size: 2.3 KiB |
BIN
data/images/ui/sparkles.png
Normal file
|
After Width: | Height: | Size: 1.5 KiB |
BIN
data/images/ui/title.png
Normal file
|
After Width: | Height: | Size: 2.9 KiB |
BIN
data/images/ui/title_large.png
Normal file
|
After Width: | Height: | Size: 3.5 KiB |
BIN
data/images/ui/yes.png
Normal file
|
After Width: | Height: | Size: 2.7 KiB |