]> git.sur5r.net Git - cc65/commitdiff
Don't hide build commands.
authorOliver Schmidt <ol.sc@web.de>
Wed, 1 Jun 2016 21:00:37 +0000 (23:00 +0200)
committerOliver Schmidt <ol.sc@web.de>
Wed, 1 Jun 2016 21:00:37 +0000 (23:00 +0200)
The samples Makefile serves educational purposes. From that perspective it's counterproductive to hide the actual build commands. Apart fom that it becomes visible if an installed cc65 is used to build the samples.

samples/Makefile

index 26b0e42f4ab32c76ffb8868798865af2ad5fa632..2b356b38468475ea63c948ef62bcdb7cbe55eab3 100644 (file)
@@ -87,18 +87,16 @@ LDFLAGS_tgidemo_atari = -D __RESERVED_MEMORY__=0x2000
 %: %.s
 
 .c.o:
-       @echo $<
-       @$(CC) $(CFLAGS) -Oirs --codesize 500 -T -g -t $(SYS) $<
-       @$(AS) $(<:.c=.s)
+       $(CC) $(CFLAGS) -Oirs --codesize 500 -T -g -t $(SYS) $<
+       $(AS) $(<:.c=.s)
 
 .s.o:
-       @echo $<
-       @$(AS) $(AFLAGS) -t $(SYS) $<
+       $(AS) $(AFLAGS) -t $(SYS) $<
 
 .PRECIOUS: %.o
 
 .o:
-       @$(LD) $(LDFLAGS_$(@F)_$(SYS)) -o $@ -t $(SYS) -m $@.map $^ $(CLIB)
+       $(LD) $(LDFLAGS_$(@F)_$(SYS)) -o $@ -t $(SYS) -m $@.map $^ $(CLIB)
 
 # --------------------------------------------------------------------------
 # List of executables. This list could be made target-dependent by checking
@@ -131,10 +129,10 @@ samples: $(EXELIST)
 # overlay file-names are shortenned to fit the Atari's 8.3-character limit.
 
 multdemo: multidemo.o
-       @$(LD) -o $@ -C $(SYS)-overlay.cfg -m $@.map $^ $(CLIB)
+       $(LD) -o $@ -C $(SYS)-overlay.cfg -m $@.map $^ $(CLIB)
 
 ovrldemo: overlaydemo.o
-       @$(LD) -o $@ -C $(SYS)-overlay.cfg -m $@.map $^ $(CLIB)
+       $(LD) -o $@ -C $(SYS)-overlay.cfg -m $@.map $^ $(CLIB)
 
 # --------------------------------------------------------------------------
 # Rule to make a CBM disk with all samples. Needs the c1541 program that comes