Added missing separator between link dependencies in C++ makefiles (oops)

This commit is contained in:
starkos 2009-01-08 19:38:06 +00:00
parent f8ca7b42f6
commit 475e8ebd12
3 changed files with 33 additions and 31 deletions

View File

@ -21,6 +21,8 @@ RC1 -> RC2
flag set (just in case)
- Fixed handling of paths in links
- Added "ToolsVersion" attribute to VS2005 and VS2008 C# projects
- Fixed separator between library dependencies in C++ makefiles
- Added missing os.copyfile() function
-----

View File

@ -22,7 +22,7 @@ ifeq ($(config),<%= _MAKE.esc(cfg.name:lower())%>)
CXXFLAGS += $(CFLAGS) <%= table.concat(cc.getcxxflags(cfg), " ") %>
LDFLAGS += <%= table.concat(table.join(cc.getldflags(cfg), cc.getlinkflags(cfg), cfg.linkoptions), " ") %>
RESFLAGS += $(DEFINES) $(INCLUDES) <%= table.concat(table.join(cc.getdefines(cfg.resdefines), cc.getincludedirs(cfg.resincludedirs), cfg.resoptions), " ") %>
LDDEPS += <%= table.concat(_MAKE.esc(premake.getlinks(cfg, "siblings", "fullpath"))) %>
LDDEPS += <%= table.concat(_MAKE.esc(premake.getlinks(cfg, "siblings", "fullpath")), " ") %>
<% if cfg.kind == "StaticLib" then %>
LINKCMD = ar -rcs $(TARGET) $(OBJECTS)
<% else %>

File diff suppressed because one or more lines are too long