#
#	GNUmakefile
#
#       Compile the SlideShow application
#
#       Copyright (C) 2004 Fabien VALLON <fabien@sonappart.net>
#
#	This Makefile is free software; you can redistribute it and/or
#	modify it under the terms of the GNU General Public License
#	as published by the Free Software Foundation; either version 2
#	of the License, or (at your option) any later version.
#
#	This program is distributed in the hope that it will be useful,
#	but WITHOUT ANY WARRANTY; without even the implied warranty of
#	MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
#
#	See the GNU General Public License for more details.
#


include $(GNUSTEP_MAKEFILES)/common.make

APP_NAME = SlideShow
VERSION = 0.2.5
SlideShow_APPLICATION_ICON = SlideShow.tiff

SlideShow_MAIN_MODEL_FILE = Main

SlideShow_OBJC_FILES = Controller.m \
		       ConvertKeys.m \
		       InputView.m\
		       main.m \
		       PreferencesController.m \
		       Shortcuts.m \
		       SlideShowMenu.m\
		       SlideObject.m\
		       CacheEngine.m

SlideShow_LANGUAGES = English 

SlideShow_LOCALIZED_RESOURCE_FILES = Main.gorm\
			             Preferences.gorm\


SlideShow_RESOURCE_FILES = Resources/DefaultSlideShowKeyBindings.dict\
			   Images/*.tiff


SlideShow_GUI_LIBS = -lSlideShow

SlideShow_OBJCFLAGS += -Wall

include $(GNUSTEP_MAKEFILES)/aggregate.make
include $(GNUSTEP_MAKEFILES)/application.make


