]> git.sur5r.net Git - cc65/blobdiff - libsrc/Makefile
Merge pull request #112 from greg-king5/warnings
[cc65] / libsrc / Makefile
index 3a355b954c714846b84dcf14be1ff96a6f88cb19..f7afd498f25ecdc137760d39bc32db748d919f1a 100644 (file)
@@ -33,13 +33,13 @@ DRVTYPES = emd \
            ser \
            tgi
 
-OUTPUTDIRS = lib         \
-             $(DRVTYPES) \
-             targetutil  \
-             asminc      \
-             cfg         \
-             include     \
-             $(subst ../,,$(filter-out $(wildcard ../include/*.*),$(wildcard ../include/*)))
+OUTPUTDIRS := lib         \
+              $(DRVTYPES) \
+              targetutil  \
+              asminc      \
+              cfg         \
+              include     \
+              $(subst ../,,$(filter-out $(wildcard ../include/*.*),$(wildcard ../include/*)))
 
 .PHONY: all mostlyclean clean install zip lib $(TARGETS)
 
@@ -253,14 +253,14 @@ export CC65_HOME := $(abspath ..)
 
 define ASSEMBLE_recipe
 
-$(if $(TRAVIS),,@echo $(TARGET) - $<)
+$(if $(QUIET),,@echo $(TARGET) - $<)
 @$(CA65) -t $(TARGET) $(CA65FLAGS) --create-dep $(@:.o=.d) -o $@ $<
 
 endef # ASSEMBLE_recipe
 
 define COMPILE_recipe
 
-$(if $(TRAVIS),,@echo $(TARGET) - $<)
+$(if $(QUIET),,@echo $(TARGET) - $<)
 @$(CC65) -t $(TARGET) $(CC65FLAGS) --create-dep $(@:.o=.d) --dep-target $@ -o $(@:.o=.s) $<
 @$(CA65) -t $(TARGET) -o $@ $(@:.o=.s)