From 9593cd5e6ea052b5fcc17de2a3576ce38270c8df Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Deuc=D0=B5?= <shurd@sasktel.net>
Date: Fri, 5 May 2023 14:51:06 -0400
Subject: [PATCH] Also, don't create intermediary object files for genmap

---
 src/conio/GNUmakefile | 5 +++--
 1 file changed, 3 insertions(+), 2 deletions(-)

diff --git a/src/conio/GNUmakefile b/src/conio/GNUmakefile
index b27c1feb08..e14fb74d39 100644
--- a/src/conio/GNUmakefile
+++ b/src/conio/GNUmakefile
@@ -77,6 +77,7 @@ rgbmap.h: rgbmap.s
 
 $(MTOBJODIR)$(DIRSEP)rgbmap$(OFILE): rgbmap.s rgbmap.h
 
-$(EXEODIR)$(DIRSEP)genmap$(EXEFILE): $(OBJODIR)$(DIRSEP)genmap$(OFILE)
-	cc $(LDFLAGS) $(OBJODIR)$(DIRSEP)genmap$(OFILE) -o $@
+$(EXEODIR)$(DIRSEP)genmap$(EXEFILE): genmap.c
+	@echo Compiling $@...
+	$(QUIET)cc $(LDFLAGS) $< -o $@
 
-- 
GitLab