Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/windirstat/premake-4.x-stable.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorstarkos <none@none>2009-05-22 22:38:53 +0400
committerstarkos <none@none>2009-05-22 22:38:53 +0400
commitd86584fe52c47c05b35fe0a35c220e60441a2ee7 (patch)
tree1f4633dc815292f8eab28852483002e6b67c9785 /src/actions/make
parentd9a3406380d3f7edc226bf5e8c2d5dd23c0980dd (diff)
Patch 2609028: verbose linking in makefile (kaidokert)
Diffstat (limited to 'src/actions/make')
-rw-r--r--src/actions/make/make_cpp.lua4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/actions/make/make_cpp.lua b/src/actions/make/make_cpp.lua
index 4242bad..592cc79 100644
--- a/src/actions/make/make_cpp.lua
+++ b/src/actions/make/make_cpp.lua
@@ -70,7 +70,7 @@
_p('$(TARGET): $(OBJECTS) $(LDDEPS) $(RESOURCES)')
_p('\t@echo Linking %s', prj.name)
- _p('\t@$(LINKCMD)')
+ _p('\t$(SILENT) $(LINKCMD)')
_p('\t$(POSTBUILDCMDS)')
_p('')
@@ -199,7 +199,7 @@
_p(' CFLAGS += $(CPPFLAGS) $(ARCH) %s', table.concat(table.join(cc.getcflags(cfg), cfg.buildoptions), " "))
_p(' CXXFLAGS += $(CFLAGS) %s', table.concat(cc.getcxxflags(cfg), " "))
_p(' LDFLAGS += %s', table.concat(table.join(cc.getldflags(cfg), cfg.linkoptions, cc.getlibdirflags(cfg)), " "))
- _p(' LIBS += %s', _MAKE.esc(table.concat(cc.getlinkflags(cfg), " ")))
+ _p(' LIBS += %s', table.concat(cc.getlinkflags(cfg), " "))
_p(' RESFLAGS += $(DEFINES) $(INCLUDES) %s', table.concat(table.join(cc.getdefines(cfg.resdefines), cc.getincludedirs(cfg.resincludedirs), cfg.resoptions), " "))
_p(' LDDEPS += %s', table.concat(_MAKE.esc(premake.getlinks(cfg, "siblings", "fullpath")), " "))