Add blowfish and sha256 source files to more Makefiles.
diff --git a/src/Make_dice.mak b/src/Make_dice.mak
index a5cb692..e3a8b9e 100644
--- a/src/Make_dice.mak
+++ b/src/Make_dice.mak
@@ -26,6 +26,7 @@
 	${CC} ${PRE} ${CFLAGS} $< -o $@
 
 SRC = \
+	blowfish.c \
 	buffer.c \
 	charset.c \
 	diff.c \
@@ -61,6 +62,7 @@
 	regexp.c \
 	screen.c \
 	search.c \
+	sha256.c \
 	spell.c \
 	syntax.c \
 	tag.c \
@@ -70,7 +72,8 @@
 	window.c \
 	version.c
 
-OBJ =	o/buffer.o \
+OBJ =	o/blowfish.o \
+	o/buffer.o \
 	o/charset.o \
 	o/diff.o \
 	o/digraph.o \
@@ -105,6 +108,7 @@
 	o/regexp.o \
 	o/screen.o \
 	o/search.o \
+	o/sha256.o \
 	o/spell.o \
 	o/syntax.o \
 	o/tag.o \
@@ -133,6 +137,8 @@
 
 ###########################################################################
 
+o/blowfish.o:	blowfish.c  $(SYMS)
+
 o/buffer.o:	buffer.c  $(SYMS)
 
 o/charset.o:	charset.c  $(SYMS)
@@ -208,6 +214,8 @@
 
 o/search.o:	search.c  $(SYMS) regexp.h
 
+o/sha256.o:	sha256.c  $(SYMS)
+
 o/spell.o:	spell.c  $(SYMS)
 
 o/syntax.o:	syntax.c  $(SYMS)