# Built-In Hands-free Kit. Enables speaking via microphone and loudspeaker.
HANDS_FREE_KIT=N
# Support for display images
IMAGING=N
# Frequency bands of the mobile
BAND=NO_BAND
# Data exchange to PC or PDA
DATA_EXCHANGE=NO_DATA_EXCHANGE
# Support for business related functions (alarm clock, calendar, notes...)
OFFICE=N
NOTES=N
CALENDAR=N
PROFILES=N
# Several dialing functions (One-touch dialing, predictive text input)
COMFORT_FUNCTIONS=N
ONE_TOUCH_DIALING=N
VOICE_DIALING=N
# Speeds up text input through word completion
PREDICTIVE_TEXT_INPUT=N
# Send and receive fax and data files
DATA_SERVICES=Y
MMS=N
INTERNET=N
WAP=N
E_MAIL=N
FAX=N
# List of names and phone numbers
PHONEBOOK=Y
NUMBER_OF_ENTRIES=SIZE_50
%if $(HANDS_FREE_KIT) == Y
%endif
%if $(IMAGING) == Y
%endif
%if $(OFFICE) == Y
%endif
%if $(NOTES) == Y
%endif
%if $(CALENDAR) == Y
%endif
%if $(PROFILES) == Y
%endif
%if $(COMFORT_FUNCTIONS) == Y
%endif
%if $(ONE_TOUCH_DIALING) == Y
%endif
%if $(VOICE_DIALING) == Y
%endif
%if $(PREDICTIVE_TEXT_INPUT) == Y
%endif
%if $(DATA_SERVICES) == Y
	SRC+=services.c
	SRC+=services.h
%endif
%if $(MMS) == Y
%endif
%if $(INTERNET) == Y
	SRC+=inet.c
	SRC+=inet.h
%endif
%if $(WAP) == Y
	SRC+=wap.c
	SRC+=wap.h
%endif
%if $(E_MAIL) == Y
	SRC+=email.c
	SRC+=email.h
%endif
%if $(FAX) == Y
	SRC+=fax.c
	SRC+=fax.h
%endif
%if $(PHONEBOOK) == Y
	SRC+=phonebook.c
	SRC+=phonebook.h
%endif

SRC= business.c