diff options
| author | Eugene Sandulenko | 2009-08-22 11:03:00 +0000 |
|---|---|---|
| committer | Eugene Sandulenko | 2009-08-22 11:03:00 +0000 |
| commit | ea87405ae412c7c4275cc1966750b817e44e255a (patch) | |
| tree | 02ef4f8e4808db3b554f5bdd1211e3db334f0bb9 /tools | |
| parent | bed502a7c70c122a097d8f9ad7ca2330e69bdccb (diff) | |
| download | scummvm-rg350-ea87405ae412c7c4275cc1966750b817e44e255a.tar.gz scummvm-rg350-ea87405ae412c7c4275cc1966750b817e44e255a.tar.bz2 scummvm-rg350-ea87405ae412c7c4275cc1966750b817e44e255a.zip | |
Patch #2840212: "Quiet make process"
svn-id: r43635
Diffstat (limited to 'tools')
| -rw-r--r-- | tools/module.mk | 12 | ||||
| -rw-r--r-- | tools/skycpt/Makefile | 6 |
2 files changed, 9 insertions, 9 deletions
diff --git a/tools/module.mk b/tools/module.mk index 9ad972f477..4c1ea57da6 100644 --- a/tools/module.mk +++ b/tools/module.mk @@ -33,16 +33,16 @@ clean-tools: # tools/convbdf$(EXEEXT): $(srcdir)/tools/convbdf.c - $(MKDIR) tools/$(DEPDIR) - $(CC) $(CFLAGS) -Wall -o $@ $< + $(QUIET)$(MKDIR) tools/$(DEPDIR) + $(QUIET_LINK)$(CC) $(CFLAGS) -Wall -o $@ $< tools/md5table$(EXEEXT): $(srcdir)/tools/md5table.c - $(MKDIR) tools/$(DEPDIR) - $(CC) $(CFLAGS) -Wall -o $@ $< + $(QUIET)$(MKDIR) tools/$(DEPDIR) + $(QUIET_LINK)$(CC) $(CFLAGS) -Wall -o $@ $< tools/make-scumm-fontdata$(EXEEXT): $(srcdir)/tools/make-scumm-fontdata.c - $(MKDIR) tools/$(DEPDIR) - $(CC) $(CFLAGS) -Wall -o $@ $< + $(QUIET)$(MKDIR) tools/$(DEPDIR) + $(QUIET_LINK)$(CC) $(CFLAGS) -Wall -o $@ $< # # Rules to explicitly rebuild the credits / MD5 tables. diff --git a/tools/skycpt/Makefile b/tools/skycpt/Makefile index bfa9937519..b907e6782d 100644 --- a/tools/skycpt/Makefile +++ b/tools/skycpt/Makefile @@ -9,10 +9,10 @@ OBJS=AsciiCptCompile.o cptcompiler.o cpthelp.o idFinder.o KmpSearch.o stdafx.o T all: $(TARGET) clean: - rm -f $(TARGET) $(OBJS) + $(QUIET)$(RM) $(TARGET) $(OBJS) $(TARGET): $(OBJS) - $(CC) $(OBJS) $(LDFLAGS) -o $(TARGET) + $(QUIET_CXX)$(CXX) $(OBJS) $(LDFLAGS) -o $(TARGET) %.o: %.cpp - $(CXX) $(CPPFLAGS) $(CXXFLAGS) -c $< -o $@
\ No newline at end of file + $(QUIET_CXX)$(CXX) $(CPPFLAGS) $(CXXFLAGS) -c $< -o $@ |
