# This makefile automatically links against GNUstep frameworks and GNUstep libraries
# If additionally you want to link against a non-GNUstep library (e.g.) FBCAccess, 
# use Framework_FrontBase.makefile instead

include $(GNUSTEP_MAKEFILES)/common.make
GNUSTEP_BUILD_DIR = /Build/FaxServiceFoundation

ifeq ($(FOUNDATION_LIB), apple)
   GNUSTEP_INSTALLATION_DIR = /
else
   GNUSTEP_INSTALLATION_DIR = $(GNUSTEP_SYSTEM_ROOT)
endif

FRAMEWORK_NAME = FaxServiceFoundation
FaxServiceFoundation_HEADER_FILES = FaxServiceProtocol.h FaxServiceFoundation.h
FaxServiceFoundation_HEADER_FILES_INSTALL_DIR = FaxServiceFoundation
FaxServiceFoundation_OBJC_FILES = FaxServiceFoundation.m
FaxServiceFoundation_C_FILES = 
LIBRARY_NAME = libFaxServiceFoundation
VERSION = 1.0.0
ADDITIONAL_OBJCFLAGS += -Wno-parentheses

# linking against frameworks
ifeq ($(FOUNDATION_LIB), apple)

ADDITIONAL_INCLUDE_DIRS +=  
FaxServiceFoundation_FRAMEWORK_LIBS +=  
# libraries to link against: e.g. -lFBCAccess -framework FBAccess
LIBRARIES_DEPEND_UPON += 

else

ADDITIONAL_INCLUDE_DIRS +=  -I/opt/FrontBase/include
FaxServiceFoundation_FRAMEWORK_LIBS += 

endif

FaxServiceFoundation_RESOURCE_FILES = 
FaxServiceFoundation_LOCALIZED_RESOURCE_FILES = 
FaxServiceFoundation_LANGUAGES = 

# linking against addional stuff (e.g. FBCAccess)
# put this in GNUmakefile.preamble
#include GNUmakefile.preamble

include $(GNUSTEP_MAKEFILES)/framework.make
