sogo/SoObjects/SOGo/GNUmakefile
Wolfgang Sourdeau 1ed587058e Monotone-Parent: 925d096d1e0f9b05775333d6111c325f69a17ac0
Monotone-Revision: cadb1dbd9d4e2d99af291da99b803238fd438921

Monotone-Author: wsourdeau@inverse.ca
Monotone-Date: 2008-01-16T18:50:17
Monotone-Branch: ca.inverse.sogo
2008-01-16 18:50:17 +00:00

113 lines
2.5 KiB
Makefile

# GNUstep makefile
-include ../../config.make
include $(GNUSTEP_MAKEFILES)/common.make
-include ../../Version
-include ./Version
LIBRARY_NAME = libSOGo
TOOL_NAME = \
# agenor_email2uid \
# agenor_shares4uid \
# agenor_emails4uid \
# agenor_defaults
libSOGo_SOVERSION=$(MAJOR_VERSION).$(MINOR_VERSION)
libSOGo_HEADER_FILES_DIR = .
libSOGo_HEADER_FILES_INSTALL_DIR = /SOGo
FHS_HEADER_DIRS = SOGo
libSOGo_HEADER_FILES = \
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
libSOGo_OBJC_FILES = \
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
# 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
include ../common.make
include $(GNUSTEP_MAKEFILES)/library.make
include $(GNUSTEP_MAKEFILES)/tool.make
-include GNUmakefile.postamble
-include ../../fhslib.make
-include ../../fhstools.make