summaryrefslogtreecommitdiffstats
path: root/src/Make_manx.mak
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2010-05-18 20:34:20 +0200
committerBram Moolenaar <Bram@vim.org>2010-05-18 20:34:20 +0200
commitedac1854877fbbe7e30088fc6238c48c75e8fa49 (patch)
tree4e4f8cb8538cd408322c5561bdc8773d3564fb4d /src/Make_manx.mak
parent927edbd134329878d9b4c333eb720b923b3b39fb (diff)
Add blowfish and sha256 source files to more Makefiles.
Diffstat (limited to 'src/Make_manx.mak')
-rw-r--r--src/Make_manx.mak14
1 files changed, 12 insertions, 2 deletions
diff --git a/src/Make_manx.mak b/src/Make_manx.mak
index c4b3bcb1d8..101c5c6b32 100644
--- a/src/Make_manx.mak
+++ b/src/Make_manx.mak
@@ -34,7 +34,8 @@ SHELL = csh
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 @@ SRC = buffer.c \
regexp.c \
screen.c \
search.c \
+ sha256.c \
spell.c \
syntax.c \
tag.c \
@@ -80,7 +82,8 @@ SRC = buffer.c \
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 = obj/buffer.o \
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 @@ CCNOSYM = $(CC) $(CFLAGS) -o
$(OBJ): $(SYMS)
+obj/blowfish.o: blowfish.c
+ $(CCSYM) $@ blowfish.c
+
obj/buffer.o: buffer.c
$(CCSYM) $@ buffer.c
@@ -323,6 +330,9 @@ obj/screen.o: screen.c
obj/search.o: search.c
$(CCSYM) $@ search.c
+obj/sha256.o: sha256.c
+ $(CCSYM) $@ sha256.c
+
obj/spell.o: spell.c
$(CCSYM) $@ spell.c