From 9024cf7cf52ee1d1af32a31eb8bbb42c5fd65b18 Mon Sep 17 00:00:00 2001 From: "jean.chalard" Date: Tue, 6 Jan 2009 12:04:21 +0000 Subject: [PATCH] J : * Remove errors when including nonexisting auto-generated makefiles, but still generate and re-include them (that is to say, just work). * Remove the "generating makefile" message that is generally totally not interesting. --- projects/mtg/Makefile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/projects/mtg/Makefile b/projects/mtg/Makefile index 46de3d8dd..d2cf6a57a 100644 --- a/projects/mtg/Makefile +++ b/projects/mtg/Makefile @@ -28,7 +28,7 @@ TARGET_ARCHITECTURE = psp PSP_FW_VERSION=371 BUILD_PRX = 1 LIBS = -ljge300 -lhgetools -lfreetype -ljpeg -lgif -lpng -lz -lm -lmikmod -lpsppower -lpspmpeg -lpspaudiocodec -lpspaudiolib -lpspaudio -lpspmp3 -lpspgum -lpspgu -lpsprtc -lstdc++ -lpspfpu -LDFLAGS = + EXTRA_TARGETS = EBOOT.PBP PSP_EBOOT_TITLE = WTH?! PSP_EBOOT_ICON = icon.png @@ -81,6 +81,6 @@ $(OBJS): objs/%.o: src/%.cpp $(CXX) -c -o $@ $(CXXFLAGS) $< $(DEPS): deps/%.d: src/%.cpp - $(CXX) -MM $(CXXFLAGS) -MQ $(patsubst deps/%.d, objs/%.o, $(@)) -MQ $@ $< > $@ + @$(CXX) -MM $(CXXFLAGS) -MQ $(patsubst deps/%.d, objs/%.o, $(@)) -MQ $@ $< > $@ -include $(DEPS) +-include $(DEPS)