# Makefile

#
#	FurbyKill 3D
#	License: GPL
#	Author: Andre Schnabel
#	E-Mail: thefrogs@web.de
#	Homepage: http://www.semler-service.de/andre/
#

# Values for compiling an unix binary
CC = c++
LINKFLAGS = `sdl-config --cflags --libs` -lSDL_ttf -lSDL_mixer

# Debug flags
COMPFLAGS = -ggdb -W -Wall -pedantic -ansi
# Release flags
#COMPFLAGS = -O6

BIN = ../furbykill3d

include MakefilePortable
