[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[news.eclipse.tools.cdt] multiple target patterns

I create two Managed make C projects:
1. c-lib with type Static Library (GNU on Windows)
2. c-exe with type Executable (GNU on Windows)
Then I make c-exe project dependent form c-lib project.

Generated makefile for c-exe project contains following string:
c-exe.exe: $(OBJS) $(USER_OBJS) 
M:/Settings/Eclipse/3.2.2/workspace/c-lib/Debug/libc-lib.a

which caused an error:  multiple target patterns

Well is there a way to generate makefile with correct string:
c-exe.exe: $(OBJS) $(USER_OBJS) 
/cygwin/m/Settings/Eclipse/3.2.2/workspace/c-lib/Debug/libc-lib.a

CDT: 3.1.2
Eclipse: 3.2.2
Platform: WinXP Cygwin

Sergey Gomanyuk