From ced6ed329e64cd41acf57c3c1bb47b90fd79f09c Mon Sep 17 00:00:00 2001 From: notaz Date: Fri, 26 Dec 2025 20:09:11 +0200 Subject: [PATCH] make: fix another issue with autodeps --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index c8df841a..543685c8 100644 --- a/Makefile +++ b/Makefile @@ -497,7 +497,7 @@ frontend/libpicofe/%.c: @exit 1 libpcsxcore/gte_nf.o: libpcsxcore/gte.c - $(CC) -c -o $@ $^ $(CFLAGS) $(AUTODEPFLAGS) -DFLAGLESS + $(CC) -c -o $@ $< $(CFLAGS) $(AUTODEPFLAGS) -DFLAGLESS include/revision.h: FORCE @(git describe --always || echo) | sed -e 's/.*/#define REV "\0"/' > $@_ -- 2.47.3