elouahidi: Hi,
Sorry for my poor English!
If I understood correctly, the execution of the MAKE command in the directory ../smstools3/ with no parameters, uses the Makefile in that directory which moves the SHELL to the subdirectory ./src/ and a rerun a second MAKE with the command "cd src && $ (MAKE) $ - $ (MAKEFLAGS)" the second MAKE called uses the Makefile present in the ../smstools3/src/ directory.
The problem is a missing tab at the second Makefile, even if the MAKE program indicates that there is a problem with the line 51,the problem actually comes from line 46 of the file ../smstools3/src/Makefile so edit this file and add a tab at the beginning of the line like this.
a preview before change:
ifeq (,$(findstring DISABLE_INET_SOCKET,$(CFLAGS)))
override LFLAGS += -lsocket -lnsl
endif
a preview after change:
ifeq (,$(findstring DISABLE_INET_SOCKET,$(CFLAGS)))
override LFLAGS += -lsocket -lnsl
endif
|