comparison src/Make_os2.mak @ 2192:40edf1be1cd8 vim73

Add blowfish and sha256 source files to more Makefiles.
author Bram Moolenaar <bram@vim.org>
date Tue, 18 May 2010 20:34:20 +0200
parents 82b5078be2dd
children ab71bb81b84e
comparison
equal deleted inserted replaced
2190:74c8bba1d9e8 2192:40edf1be1cd8
37 37
38 INCL = vim.h globals.h option.h keymap.h macros.h ascii.h term.h os_unix.h structs.h os_os2_cfg.h 38 INCL = vim.h globals.h option.h keymap.h macros.h ascii.h term.h os_unix.h structs.h os_os2_cfg.h
39 CFLAGS = -O2 -fno-strength-reduce -DOS2 -Wall -Iproto $(DEFINES) 39 CFLAGS = -O2 -fno-strength-reduce -DOS2 -Wall -Iproto $(DEFINES)
40 40
41 OBJ = \ 41 OBJ = \
42 blowfish.o \
42 buffer.o \ 43 buffer.o \
43 charset.o \ 44 charset.o \
44 diff.o \ 45 diff.o \
45 digraph.o \ 46 digraph.o \
46 edit.o \ 47 edit.o \
71 popupmnu.o \ 72 popupmnu.o \
72 quickfix.o \ 73 quickfix.o \
73 regexp.o \ 74 regexp.o \
74 screen.o \ 75 screen.o \
75 search.o \ 76 search.o \
77 sha256.o \
76 spell.o \ 78 spell.o \
77 syntax.o \ 79 syntax.o \
78 tag.o \ 80 tag.o \
79 term.o \ 81 term.o \
80 ui.o \ 82 ui.o \
110 cd tee & $(MAKE) -f Makefile clean 112 cd tee & $(MAKE) -f Makefile clean
111 113
112 ########################################################################### 114 ###########################################################################
113 115
114 os_unix.o: os_unix.c $(INCL) 116 os_unix.o: os_unix.c $(INCL)
117 blowfish.o: blowfish.c $(INCL)
115 buffer.o: buffer.c $(INCL) 118 buffer.o: buffer.c $(INCL)
116 charset.o: charset.c $(INCL) 119 charset.o: charset.c $(INCL)
117 diff.o: diff.c $(INCL) 120 diff.o: diff.c $(INCL)
118 digraph.o: digraph.c $(INCL) 121 digraph.o: digraph.c $(INCL)
119 edit.o: edit.c $(INCL) 122 edit.o: edit.c $(INCL)
144 popupmnu.o: popupmnu.c $(INCL) 147 popupmnu.o: popupmnu.c $(INCL)
145 quickfix.o: quickfix.c $(INCL) 148 quickfix.o: quickfix.c $(INCL)
146 regexp.o: regexp.c $(INCL) 149 regexp.o: regexp.c $(INCL)
147 screen.o: screen.c $(INCL) 150 screen.o: screen.c $(INCL)
148 search.o: search.c $(INCL) 151 search.o: search.c $(INCL)
152 sha256.o: sha256.c $(INCL)
149 spell.o: spell.c $(INCL) 153 spell.o: spell.c $(INCL)
150 syntax.o: syntax.c $(INCL) 154 syntax.o: syntax.c $(INCL)
151 tag.o: tag.c $(INCL) 155 tag.o: tag.c $(INCL)
152 term.o: term.c $(INCL) 156 term.o: term.c $(INCL)
153 ui.o: ui.c $(INCL) 157 ui.o: ui.c $(INCL)