medfall

Unnamed repository; edit this file 'description' to name the repository.
Log | Files | Refs

commit 1ea21c755bfa97a12d7384e7b79de599be1af09e
parent 97cfe7557360d80877c49f5915e6b23d4ddab509
Author: Michael Savage <mikejsavage@gmail.com>
Date:   Wed Jan 11 23:08:02 +0200

Less spammy bin/shared lib builds

Diffstat:
rules.mk | 4++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/rules.mk b/rules.mk @@ -3,7 +3,7 @@ # Create the binaries $(BINS): %: @printf "\e[1;31mbuilding $@\e[0m\n" - $(CXX) -o $@ $^ $(LDFLAGS) + @$(CXX) -o $@ $^ $(LDFLAGS) # Create stb_*.cc and then stb_*.o STB_OBJS := $(addprefix stb_,$(addsuffix .o,$(STBS))) @@ -18,7 +18,7 @@ $(STB_OBJS): %.o: %.h # Build the game modules $(MODULES): %.so: $(COMMON_OBJS) @printf "\e[1;33mbuilding $@\e[0m\n" - $(CXX) -o $@ $^ $(LDFLAGS) -shared + @$(CXX) -o $@ $^ $(LDFLAGS) -shared # Build *.o from *.cc # The -M* stuff is for generating dependency lists