Deepstream custom parsing ,make file error

Hi i am trying to do custom object detection using deepstream
CUDA_VER=10.2
ifeq ($(CUDA_VER),)
$(error “CUDA_VER is not set”)
endif
CC:= g++

CFLAGS:= -Wall -Werror -std=c++11 -shared -fPIC -Wno-error=deprecated-declarations
CFLAGS+= -I…/…/includes -I/usr/local/cuda-$(CUDA_VER)/include -I/usr/src/tensorrt-8.0.1/include

LIBS:= -lnvinfer -lnvparsers -L/usr/local/cuda-$(CUDA_VER)/lib64 -lcudart -lcublas -L/usr/src/tensorrt-8.0.1/lib
LFLAGS:= -Wl,–start-group $(LIBS) -Wl,–end-group

SRCFILES:= nvdsparsebbox_ssd.cpp nvdsiplugin_ssd.cpp
TARGET_LIB:= libnvdsinfer_custom_impl_ssd.so

all: $(TARGET_LIB)

$(TARGET_LIB) : $(SRCFILES)
$(CC) -o $@ $^ $(CFLAGS) $(LFLAGS)

clean:
rm -rf $(TARGET_LIB)
this is the make file i am using for ssd
i included tensorrt path in the make file but not compiling
command used:
make -C nvdsinfer_custom_impl_ssd

outmake: Entering directory ‘/home/dst/Deepstream/opt/nvidia/deepstream/deepstream-6.0/sources/objectDetector_SSD/nvdsinfer_custom_impl_ssd’
g++ -o libnvdsinfer_custom_impl_ssd.so nvdsparsebbox_ssd.cpp nvdsiplugin_ssd.cpp -Wall -Werror -std=c++11 -shared -fPIC -Wno-error=deprecated-declarations -I…/…/includes -I/usr/local/cuda-10.2/include -I/usr/src/tensorrt-8.0.1/include -Wl,–start-group -lnvinfer -lnvparsers -L/usr/local/cuda-10.2/lib64 -lcudart -lcublas -L/usr/src/tensorrt-8.0.1/lib -Wl,–end-group
/bin/sh: 1: cannot open b: No such file
Makefile:41: recipe for target ‘libnvdsinfer_custom_impl_ssd.so’ failed
make: *** [libnvdsinfer_custom_impl_ssd.so] Error 2
make: Leaving directory ‘/home/dst/Deepstream/opt/nvidia/deepstream/deepstream-6.0/sources/objectDetector_SSD/nvdsinfer_custom_impl_ssd’
put:

Thanks in Advance

Hello, this forum is dedicated to discussions related to using the sanitizer tools and API.
Questions related to TensorRT can be raised at TensorRT - NVIDIA Developer Forums