Merge pull request #2786 from mrdudz/fixmakefiles

Fixmakefiles
This commit is contained in:
Bob Andrews
2025-07-10 00:01:12 +02:00
committed by GitHub
3 changed files with 4 additions and 4 deletions

View File

@@ -57,7 +57,7 @@ ifdef QUIET
PQ = "QUIET=1"
PD = --no-print-directory
ifndef CMD_EXE
CATERR = 2> ../wrk/common/$$@.errlog || (cat ../wrk/common/$$@.errlog && false)
CATERR = 2> $@.errlog || (cat $@.errlog && false)
endif
endif

View File

@@ -33,7 +33,7 @@ ifdef QUIET
NULLOUT = >$(NULLDEV)
NULLERR = 2>$(NULLDEV)
ifndef CMD_EXE
CATERR = 2> $(WORKDIR)/$$@.errlog || (cat $(WORKDIR)/$$@.errlog && false)
CATERR = 2> $@.errlog && (cat $@.errlog && true)
endif
endif
@@ -53,7 +53,7 @@ $(WORKDIR):
$(WORKDIR)/%.prg: %.s | $(WORKDIR)
$(if $(QUIET),echo asm/err/$*.s)
$(NOT) $(CA65) -o $@ $< $(NULLERR)
$(NOT) $(CA65) -o $@ $< $(CATERR)
clean:
@$(call RMDIR,$(WORKDIR))

View File

@@ -33,7 +33,7 @@ ifdef QUIET
NULLOUT = >$(NULLDEV)
NULLERR = 2>$(NULLDEV)
ifndef CMD_EXE
CATERR = 2> $(WORKDIR)/$$@.errlog || (cat $(WORKDIR)/$$@.errlog && false)
CATERR = 2> $@.errlog && (cat $@.errlog && true)
endif
endif