1#
2#	GNUmakefile
3#
4#       Compile the Preview application
5#
6#	Copyright (C) 2003 Fabien Vallon <fabien.vallon@fr.alcove.com>
7#
8#	This Makefile is free software; you can redistribute it and/or
9#	modify it under the terms of the GNU General Public License
10#	as published by the Free Software Foundation; either version 2
11#	of the License, or (at your option) any later version.
12#
13#	This program is distributed in the hope that it will be useful,
14#	but WITHOUT ANY WARRANTY; without even the implied warranty of
15#	MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
16#
17#	See the GNU General Public License for more details.
18#
19
20
21include $(GNUSTEP_MAKEFILES)/common.make
22
23APP_NAME=Preview
24VERSION=0.8.5
25Preview_APPLICATION_ICON=Preview.tiff
26Preview_MAIN_MODEL_FILE=Main
27
28Preview_OBJC_FILES= main.m \
29		    Document.m \
30		    ImageView.m
31
32
33Preview_LANGUAGES = English  Bulgarian French
34
35Preview_LOCALIZED_RESOURCE_FILES= Preview.gorm \
36				  Main.gorm\
37				  Preview.help \
38				  Localizable.strings
39
40Preview_RESOURCE_FILES= Images/* \
41			Documentation/gpl.txt \
42			Documentation/Contributors.rtf
43
44Preview_OBJCFLAGS += -Wall
45
46include $(GNUSTEP_MAKEFILES)/aggregate.make
47include $(GNUSTEP_MAKEFILES)/application.make
48
49
50