POCO install throwing error

All ,

I am trying to install POCO lib on Solaris server.

When I do make -s,I am getting the following error.

make: Fatal error in reader: Makefile, line 10: Unexpected end of line seen

Few of the content:

#
# Makefile
#
# The global Makefile for POCO [generated by mkrelease]
#

#sinclude config.make

ifndef POCO_BASE
$(warning WARNING: POCO_BASE is not defined. Assuming current directory.)
export POCO_BASE=$(shell pwd)
endif

ifndef POCO_PREFIX
export POCO_PREFIX=/usr/local
endif

ifndef POCO_BUILD
export POCO_BUILD=$(POCO_BASE)
endif

.PHONY: all libexecs cppunit tests samples clean distclean install

all: libexecs tests samples

INSTALLDIR = $(DESTDIR)$(POCO_PREFIX)
COMPONENTS = Foundation XML Util Net

cppunit:
        $(MAKE) -C $(POCO_BASE)/CppUnit

Any help please?