1# GNUmakefile: makefile for the undo subproject
2#
3# Copyright (C) 2000-2009 by vhf interservice GmbH
4# Author:   Georg Fleischmann
5#
6# modified: 2009-06-19
7#
8# This program is free software; you can redistribute it and/or
9# modify it under the terms of the vhf Public License as
10# published by vhf interservice GmbH. Among other things, the
11# License requires that the copyright notices and this notice
12# be preserved on all copies.
13#
14# This program is distributed in the hope that it will be useful,
15# but WITHOUT ANY WARRANTY; without even the implied warranty of
16# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
17# See the vhf Public License for more details.
18#
19# You should have received a copy of the vhf Public License along
20# with this program; see the file LICENSE. If not, write to vhf.
21#
22# vhf interservice GmbH, Im Marxle 3, 72119 Altingen, Germany
23# eMail: info@vhf.de
24# http://www.vhf.de
25
26include $(GNUSTEP_MAKEFILES)/common.make
27
28OBJCFLAGS += -Wall
29ADDITIONAL_INCLUDE_DIRS += -I..
30
31#
32# We are creating a subproject
33#
34SUBPROJECT_NAME = undo
35undo_HEADERS = Change.h ChangeManager.h MultipleChange.h undochange.h\
36               LocalizableStringsForUndo.h
37undo_OBJC_FILES = Change.m ChangeManager.m MultipleChange.m
38undo_C_FILES =
39undo_RESOURCE_FILES =
40undo_PRINCIPAL_CLASS =
41
42-include GNUmakefile.preamble
43
44#-include GNUmakefile.local
45
46include $(GNUSTEP_MAKEFILES)/subproject.make
47
48-include GNUmakefile.postamble
49
50