1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21
|
From: Chris Lamb <lamby@debian.org>
Date: Mon, 18 Aug 2025 13:45:23 -0700
Subject: Fix a GNU Make --shuffle bug.
---
Instant/Makefile | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/Instant/Makefile b/Instant/Makefile
index 02c691c..69613ad 100644
--- a/Instant/Makefile
+++ b/Instant/Makefile
@@ -93,7 +93,7 @@ all: dotptregexp $(PROGS)
dotptregexp:
cd tptregexp; $(MAKE) all
-instant: $(OBJ)
+instant: $(OBJ) dotptregexp
$(CC) -o $@ $(LDFLAGS) $(OBJ) $(REGEX)
install: all
|