mirror of
https://github.com/cc65/cc65.git
synced 2025-08-07 00:25:45 +00:00
Made a makefile show its progress consistently, by listing only the source file names.
That change avoids the confusion of seeing some names shown twice.
This commit is contained in:
@@ -178,7 +178,7 @@ $1_STCS = $$(patsubst $$($1_DRVPAT),$$($1_STCPAT),$$($1_DRVS))
|
|||||||
$$($1_OBJS): | $$($1_OBJDIR)
|
$$($1_OBJS): | $$($1_OBJDIR)
|
||||||
|
|
||||||
$$($1_DRVPAT): $$($1_OBJPAT) $$(ZPOBJ) | $$($1_DRVDIR)
|
$$($1_DRVPAT): $$($1_OBJPAT) $$(ZPOBJ) | $$($1_DRVDIR)
|
||||||
@echo $$(TARGET) - $$(@F)
|
@echo $$(TARGET) - $$(<F)
|
||||||
@$$(LD65) -o $$@ -t module $$^
|
@$$(LD65) -o $$@ -t module $$^
|
||||||
|
|
||||||
$$($1_OBJDIR) $$($1_DRVDIR):
|
$$($1_OBJDIR) $$($1_DRVDIR):
|
||||||
@@ -237,7 +237,7 @@ endef
|
|||||||
$(COMPILE_recipe)
|
$(COMPILE_recipe)
|
||||||
|
|
||||||
$(EXTRA_OBJPAT): $(EXTRA_SRCPAT) | ../lib
|
$(EXTRA_OBJPAT): $(EXTRA_SRCPAT) | ../lib
|
||||||
@echo $(TARGET) - $(@F)
|
@echo $(TARGET) - $(<F)
|
||||||
@$(CA65) -t $(TARGET) $(CA65FLAGS) -o $@ $<
|
@$(CA65) -t $(TARGET) $(CA65FLAGS) -o $@ $<
|
||||||
|
|
||||||
../lib/$(TARGET).lib: $(OBJS) | ../lib
|
../lib/$(TARGET).lib: $(OBJS) | ../lib
|
||||||
|
Reference in New Issue
Block a user