sogo/SoObjects/SOGo/GNUmakefile
Wolfgang Sourdeau 30f3cf33ac Monotone-Parent: add5712466eee5d26701d06e05d1e2771f7dd4fa
Monotone-Revision: 0077efee9316ca1e744e82d28a7eb1b8c54b05ef

Monotone-Author: wsourdeau@inverse.ca
Monotone-Date: 2008-04-24T01:04:11
Monotone-Branch: ca.inverse.sogo
2008-04-24 01:04:11 +00:00

116 lines
2.5 KiB
Makefile

# GNUstep makefile
include ../../config.make
include $(GNUSTEP_MAKEFILES)/common.make
-include ../../Version
-include ./Version
FRAMEWORK_NAME = SOGo
SOGo_INSTALL_DIR = $(SOGO_LIBDIR)
TOOL_NAME = \
# agenor_email2uid \
# agenor_shares4uid \
# agenor_emails4uid \
# agenor_defaults
SOGo_VERSION=$(MAJOR_VERSION).$(MINOR_VERSION)
SOGo_HEADER_FILES = \
SOGoCache.h \
SOGoObject.h \
SOGoContentObject.h \
SOGoFolder.h \
SOGoParentFolder.h \
SOGoUserFolder.h \
SOGoGroupsFolder.h \
SOGoGroupFolder.h \
SOGoCustomGroupFolder.h \
\
LDAPUserManager.h \
LDAPSource.h \
SOGoDateFormatter.h \
SOGoPermissions.h \
SOGoDAVRendererTypes.h \
iCalEntityObject+Utilities.h \
NSArray+Utilities.h \
NSDictionary+URL.h \
NSDictionary+Utilities.h \
NSObject+Utilities.h \
NSString+Utilities.h \
NSNumber+Utilities.h \
NSNull+Utilities.h \
NSDictionary+URL.h \
NSCalendarDate+SOGo.h \
\
SOGoDAVAuthenticator.h \
SOGoWebAuthenticator.h \
SOGoMailer.h \
SOGoUser.h \
\
NSDictionary+BSJSONAdditions.h \
NSScanner+BSJSONAdditions.h \
\
WORequest+SOGo.h
SOGo_OBJC_FILES = \
SOGoCache.m \
SOGoObject.m \
SOGoContentObject.m \
SOGoFolder.m \
SOGoGCSFolder.m \
SOGoParentFolder.m \
SOGoUserFolder.m \
SOGoGroupsFolder.m \
SOGoGroupFolder.m \
SOGoCustomGroupFolder.m \
\
SOGoDateFormatter.m \
SOGoPermissions.m \
LDAPUserManager.m \
LDAPSource.m \
SOGoDAVRendererTypes.m \
AgenorUserDefaults.m \
iCalEntityObject+Utilities.m \
NSArray+Utilities.m \
NSDictionary+URL.m \
NSDictionary+Utilities.m \
NSObject+Utilities.m \
NSString+Utilities.m \
NSNumber+Utilities.m \
NSNull+Utilities.m \
NSCalendarDate+SOGo.m \
\
SOGoDAVAuthenticator.m \
SOGoWebAuthenticator.m \
SOGoMailer.m \
SOGoUser.m \
\
NSDictionary+BSJSONAdditions.m \
NSScanner+BSJSONAdditions.m \
\
WORequest+SOGo.m
SOGo_RESOURCE_FILES = \
DAVReportMap.plist
# tools
agenor_email2uid_OBJC_FILES += agenor_email2uid.m
agenor_shares4uid_OBJC_FILES += agenor_shares4uid.m
agenor_emails4uid_OBJC_FILES += agenor_emails4uid.m
agenor_defaults_OBJC_FILES += agenor_defaults.m
ADDITIONAL_TOOL_LIBS += -Lobj -lSOGo$(LIBRARY_NAME_SUFFIX)
ADDITIONAL_INCLUDE_DIRS += -I../../SOPE/
ADDITIONAL_LIB_DIRS += -L../../SOPE/GDLContentStore/obj/
-include GNUmakefile.preamble
ifneq ($(FHS_INSTALL_ROOT),)
GNUSTEP_HEADERS=$(DESTDIR)$(FHS_INSTALL_ROOT)/include
endif
include $(GNUSTEP_MAKEFILES)/framework.make
include $(GNUSTEP_MAKEFILES)/tool.make
-include GNUmakefile.postamble