]> git.sur5r.net Git - cc65/commitdiff
Made lib build less verbose if run as Travis CI build.
authorOliver Schmidt <ol.sc@web.de>
Tue, 21 May 2013 19:46:03 +0000 (21:46 +0200)
committerOliver Schmidt <ol.sc@web.de>
Tue, 21 May 2013 19:46:03 +0000 (21:46 +0200)
Travis CI limits the real time build output to 10000 lines. We need to be less verbose in the lib build to stay below that threshold.

libsrc/Makefile

index 1c5547cd058193a35561311257936b6a235339b2..a91cc73f4d781b4e09f9fe37d5a52daba139c861 100644 (file)
@@ -205,7 +205,7 @@ LD := $(if $(wildcard ../bin/ld65*),../bin/ld65,ld65)
 
 define ASSEMBLE_recipe
 
-@echo $(TARGET) - $<
+$(if $(TRAVIS),,@echo $(TARGET) - $<)
 @$(CA) -t $(TARGET) $(AFLAGS) --create-dep $(@:.o=.d) -o $@ $<
 
 endef
@@ -214,7 +214,7 @@ endef
 
 define COMPILE_recipe
 
-@echo $(TARGET) - $<
+$(if $(TRAVIS),,@echo $(TARGET) - $<)
 @$(CC) -t $(TARGET) $(CFLAGS) --create-dep $(@:.o=.d) --dep-target $@ -o $(@:.o=.s) $<
 @$(CA) -t $(TARGET) -o $@ $(@:.o=.s)
 
@@ -229,7 +229,7 @@ endef
        $(COMPILE_recipe)
 
 $(EXTRA_OBJPAT): $(EXTRA_SRCPAT) | ../lib
-       @echo $(TARGET) - $<
+       @echo $(TARGET) - $(@F)
        @$(CA) -t $(TARGET) $(AFLAGS) -o $@ $<
 
 ../lib/$(TARGET).lib: $(OBJS) | ../lib