]> git.sur5r.net Git - cc65/blobdiff - libsrc/Makefile
Merge remote-tracking branch 'upstream/master' into a5200
[cc65] / libsrc / Makefile
index 3a355b954c714846b84dcf14be1ff96a6f88cb19..28f39d8d36a19a3502889ec3026e1bf552873d99 100644 (file)
@@ -16,6 +16,7 @@ GEOS = geos-apple \
 
 TARGETS = apple2    \
           apple2enh \
+          atari5200 \
           atari     \
           atarixl   \
           atmos     \
@@ -33,13 +34,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 +254,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)