Description: Add install target to Makefile
Author: Vince Mulhollon <vlm@debian.org>
Last-Update: 2025-03-18

--- codegroup-20080907+ds1.orig/Makefile
+++ codegroup-20080907+ds1/Makefile
@@ -2,6 +2,7 @@
 PROGS = codegroup
 # CFLAGS = -O -Wall
 PAGER = more
+BIN = $(DESTDIR)/usr/bin
 
 all:	$(PROGS)
 
@@ -11,6 +12,9 @@ clean:
 codegroup: codegroup.o
 	$(CC) codegroup.o -o codegroup $(CFLAGS) $(CPPFLAGS) $(LDFLAGS)
 
+install:	${ALL}
+	install codegroup ${BIN}
+
 #   Create zipped archive
 
 RELFILES = Makefile codegroup.1 codegroup.c \
