Build of configuration Debug for project myso **

make all

filename.d:1: * multiple target patterns. Stop.

The makefile looks like:

# All Target
all: libmyso.so
# Tool invocations
libmyso.so: $(OBJS) $(USER_OBJS)
    @echo 'Building target: $@'
    @echo 'Invoking: GCC C++ Linker'
    g++ -L"E:\cygwin\lib" -shared -o"libmyso.so"
    $(OBJS) $(USER_OBJS) $(LIBS)
    @echo 'Finished building target: $@'
    @echo ' '
# Other Targets
clean:
    -$(RM) $(OBJS)$(C++_DEPS)$(C_DEPS)$(CC_DEPS)$(LIBRARIES)$(CPP_DEPS)$(CXX_DEPS)$(C_UPPER_DEPS) libmyso.so
    -@echo ' '

.PHONY: all clean dependents .SECONDARY: -include ../makefile.targets

link|improve this question
You're going to need to add some useful information if you want a useful response. For instance, the contents of the make file. – Max Lybbert Apr 21 '10 at 6:03
my make file : # All Target all: libmyso.so # Tool invocations libmyso.so: $(OBJS) $(USER_OBJS) @echo 'Building target: $@' @echo 'Invoking: GCC C++ Linker' g++ -L"E:\cygwin\lib" -shared -o"libmyso.so" $(OBJS) $(USER_OBJS) $(LIBS) @echo 'Finished building target: $@' @echo ' ' # Other Targets clean: -$(RM) $(OBJS)$(C++_DEPS)$(C_DEPS)$(CC_DEPS)$(LIBRARIES)$(CPP_DEPS)$(CXX_DEPS)$(C_UPPER‌​_DEPS) libmyso.so -@echo ' ' .PHONY: all clean dependents .SECONDARY: -include ../makefile.targets – rupali Apr 21 '10 at 6:07
FYI, console shows error in filename.d ..what is that? – rupali Apr 21 '10 at 6:07
also when I say build(clean project) this error doesnt come ..and i get .so file properly.. – rupali Apr 21 '10 at 6:13
feedback

1 Answer

The makefile that you posted (I hope I got the formatting correct) refers to another makefile, and the contents of that other makefile are probably important. However, it appears that your problem is that filename.d is found in a path with spaces, and that path is what appears in either $(OBJS) or $(USER_OBJS) (probably defined in ../makefile.targets).

EDIT It looks like this is a problem that has been fixed in some version of Make, but not yours (see "Compiling on Cygwin").

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.