Add blowfish and sha256 source files to more Makefiles.
diff --git a/src/Make_manx.mak b/src/Make_manx.mak
index c4b3bcb..101c5c6 100644
--- a/src/Make_manx.mak
+++ b/src/Make_manx.mak
@@ -34,7 +34,8 @@
 REN = $(SHELL) -c mv -f
 DEL = $(SHELL) -c rm -f
 
-SRC =	buffer.c \
+SRC =	blowfish.c \
+	buffer.c \
 	charset.c \
 	diff.c \
 	digraph.c \
@@ -69,6 +70,7 @@
 	regexp.c \
 	screen.c \
 	search.c \
+	sha256.c \
 	spell.c \
 	syntax.c \
 	tag.c \
@@ -80,7 +82,8 @@
 
 INCL = vim.h feature.h keymap.h macros.h ascii.h term.h structs.h os_amiga.h
 
-OBJ =	obj/buffer.o \
+OBJ =	obj/blowfish.o \
+	obj/buffer.o \
 	obj/charset.o \
 	obj/diff.o \
 	obj/digraph.o \
@@ -115,6 +118,7 @@
 	obj/regexp.o \
 	obj/screen.o \
 	obj/search.o \
+	obj/sha256.o \
 	obj/spell.o \
 	obj/syntax.o \
 	obj/tag.o \
@@ -214,6 +218,9 @@
 
 $(OBJ): $(SYMS)
 
+obj/blowfish.o:	blowfish.c
+	$(CCSYM) $@ blowfish.c
+
 obj/buffer.o:	buffer.c
 	$(CCSYM) $@ buffer.c
 
@@ -323,6 +330,9 @@
 obj/search.o:	search.c
 	$(CCSYM) $@ search.c
 
+obj/sha256.o:	sha256.c
+	$(CCSYM) $@ sha256.c
+
 obj/spell.o:	spell.c
 	$(CCSYM) $@ spell.c