blob: e716153667a82d43af9127e69a65f015a4cfb170 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
|
From b7205540bf89c366fe1b03ab9637b7dd01f03488 Mon Sep 17 00:00:00 2001
From: John Vogel <jvogel4@stny.rr.com>
Date: Wed, 11 Oct 2023 09:28:58 -0400
Subject: [PATCH 3/3] Makefile: use explicit target for final binary
---
Makefile | 2 ++
1 file changed, 2 insertions(+)
diff --git a/Makefile b/Makefile
index a091d66..b9b0017 100644
--- a/Makefile
+++ b/Makefile
@@ -19,6 +19,8 @@ debug: $(OUT)
include Sourcedeps
+$(OUT): $(OBJ)
+
$(OBJ): Makefile
install:
--
2.42.0
|