# $Id$
+ADDITIONAL_INCLUDE_DIRS += \
+ -I../SoObjects/ \
+ -I../..
+
+ADDITIONAL_LIB_DIRS += \
+ -L../SoObjects/SOGo/$(GNUSTEP_OBJ_DIR)/ \
+ -L../../OGoContentStore/$(GNUSTEP_OBJ_DIR)/ \
+ -L../../SOGoLogic/$(GNUSTEP_OBJ_DIR)/
+
ADDITIONAL_TOOL_LIBS += \
+ -lSOGo \
-lSOGoLogic \
-lOGoContentStore \
-lGDLAccess \
--- /dev/null
+# $Id: GNUmakefile,v 1.3 2004/04/06 13:01:10 helge Exp $
+
+include $(GNUSTEP_MAKEFILES)/common.make
+
+BUNDLE_NAME = Appointments
+BUNDLE_EXTENSION = .SOGo
+BUNDLE_INSTALL_DIR = $(GNUSTEP_USER_ROOT)/Library/SOGo
+
+Appointments_PRINCIPAL_CLASS = SOGoAppointmentsProduct
+
+Appointments_OBJC_FILES = \
+ Product.m \
+
+Appointments_RESOURCE_FILES += \
+ Version \
+ product.plist
+
+-include GNUmakefile.preamble
+include $(GNUSTEP_MAKEFILES)/bundle.make
+-include GNUmakefile.postamble
--- /dev/null
+# $Id$
+
+ADDITIONAL_INCLUDE_DIRS += \
+ -I.. \
+ -I../../..
+
+ADDITIONAL_LIB_DIRS += \
+ -L../SOGo/$(GNUSTEP_OBJ_DIR)/ \
+ -L../../../OGoContentStore/$(GNUSTEP_OBJ_DIR)/ \
+ -L../../../SOGoLogic/$(GNUSTEP_OBJ_DIR)/
--- /dev/null
+/*
+ Copyright (C) 2004 SKYRIX Software AG
+
+ This file is part of OpenGroupware.org.
+
+ OGo is free software; you can redistribute it and/or modify it under
+ the terms of the GNU Lesser General Public License as published by the
+ Free Software Foundation; either version 2, or (at your option) any
+ later version.
+
+ OGo 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 Lesser General Public
+ License for more details.
+
+ You should have received a copy of the GNU Lesser General Public
+ License along with OGo; see the file COPYING. If not, write to the
+ Free Software Foundation, 59 Temple Place - Suite 330, Boston, MA
+ 02111-1307, USA.
+*/
+// $Id$
+
+#import <Foundation/NSObject.h>
+
+@interface SOGoAppointmentsProduct : NSObject
+{
+}
+
+@end
+
+@implementation SOGoAppointmentsProduct
+
+@end /* SOGoAppointmentsProduct */
--- /dev/null
+# $Id: Version,v 1.9 2004/05/19 14:30:45 helge Exp $
+
+SUBMINOR_VERSION:=1
--- /dev/null
+{
+ requires = ( MAIN );
+
+ publicResources = (
+ );
+
+ factories = {
+ };
+
+ classes = {
+ SOGoAppointmentFolder = {
+ superclass = "SOGoFolder";
+ };
+ };
+}
include $(GNUSTEP_MAKEFILES)/common.make
SUBPROJECTS = \
- SOGo
+ SOGo \
+ Appointments \
include $(GNUSTEP_MAKEFILES)/aggregate.make