]> git.sur5r.net Git - cc65/commitdiff
Made a makefile show its progress consistently, by listing only the source file names.
authorGreg King <gregdk@users.sf.net>
Mon, 25 Nov 2013 00:12:27 +0000 (19:12 -0500)
committerGreg King <gregdk@users.sf.net>
Mon, 25 Nov 2013 00:12:27 +0000 (19:12 -0500)
That change avoids the confusion of seeing some names shown twice.

libsrc/Makefile

index d855d15807fb59febe0a91600223405a9c93d647..fb716067be822a3c93c112ebfe355d9db17dad33 100644 (file)
@@ -178,7 +178,7 @@ $1_STCS = $$(patsubst $$($1_DRVPAT),$$($1_STCPAT),$$($1_DRVS))
 $$($1_OBJS): | $$($1_OBJDIR)
 
 $$($1_DRVPAT): $$($1_OBJPAT) $$(ZPOBJ) | $$($1_DRVDIR)
-       @echo $$(TARGET) - $$(@F)
+       @echo $$(TARGET) - $$(<F)
        @$$(LD65) -o $$@ -t module $$^
 
 $$($1_OBJDIR) $$($1_DRVDIR):
@@ -237,7 +237,7 @@ endef
        $(COMPILE_recipe)
 
 $(EXTRA_OBJPAT): $(EXTRA_SRCPAT) | ../lib
-       @echo $(TARGET) - $(@F)
+       @echo $(TARGET) - $(<F)
        @$(CA65) -t $(TARGET) $(CA65FLAGS) -o $@ $<
 
 ../lib/$(TARGET).lib: $(OBJS) | ../lib