Make file error

I am new to using make command and I keep getting this error time and again
please help me
Make file is as follows

#ARCH := $(shell uname)#
# ifeq ($(ARCH), SunOS)
     DEFINES  = -KPIC -DSVR4 -DSOLARIS -DSYSV -D__svr4 -D__svr4__\ -D_REENTRANT -DSOLARIS2_5 -D_SVID_GETTOD -DXP_UNIX -UDEBUG -DNDEBUG \  -DXP_UNIX
         INCPATH  = -I. -I../include/dbm -I../include/nspr -I../include/security
         LIBPATH  = -L../lib
         LIBS     = -lnss -lssl -lpkcs7 -lpkcs12 -lsecmod -lcert -lkey \
  -lcrypto -lsecutil -lhash -ldbm -lplc4 -lplds4 -lnspr4 -lsocket -lnsl
         CFLAGS   = -g
         CC       = cc
 endif # SunOS
 
 # The rules to build the sample apps appear below.
 
 server:
         $(CC) $(CFLAGS) $@.c -o $@ $(DEFINES) $(INCPATH) $(LIBPATH) $(LIBS)
 
 client:
         $(CC) $(CFLAGS) $@.c -o $@ $(DEFINES) $(INCPATH) $(LIBPATH) $(LIBS)
 
 clean:
         rm -fr server client server.o client.o
Error: 
make: Fatal error in reader: Makefile, line 2: Unexpected end of line seen

It's probably because you have the ifeq line (line 2) commented but the endif (line 10) is still there. Comment line 10 too:

#endif # SunOS