Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(2)

Side by Side Diff: openssl/crypto/des/makefile.bc

Issue 2072073002: Delete bundled copy of OpenSSL and replace with README. (Closed) Base URL: https://chromium.googlesource.com/chromium/deps/openssl@master
Patch Set: Delete bundled copy of OpenSSL and replace with README. Created 4 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « openssl/crypto/des/fcrypt_b.c ('k') | openssl/crypto/des/ncbc_enc.c » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 #
2 # Origional BC Makefile from Teun <Teun.Nijssen@kub.nl>
3 #
4 #
5 CC = bcc
6 TLIB = tlib /0 /C
7 # note: the -3 flag produces code for 386, 486, Pentium etc; omit it for 286s
8 OPTIMIZE= -3 -O2
9 #WINDOWS= -W
10 CFLAGS = -c -ml -d $(OPTIMIZE) $(WINDOWS) -DMSDOS
11 LFLAGS = -ml $(WINDOWS)
12
13 .c.obj:
14 $(CC) $(CFLAGS) $*.c
15
16 .obj.exe:
17 $(CC) $(LFLAGS) -e$*.exe $*.obj libdes.lib
18
19 all: $(LIB) destest.exe rpw.exe des.exe speed.exe
20
21 # "make clean": use a directory containing only libdes .exe and .obj files...
22 clean:
23 del *.exe
24 del *.obj
25 del libdes.lib
26 del libdes.rsp
27
28 OBJS= cbc_cksm.obj cbc_enc.obj ecb_enc.obj pcbc_enc.obj \
29 qud_cksm.obj rand_key.obj set_key.obj str2key.obj \
30 enc_read.obj enc_writ.obj fcrypt.obj cfb_enc.obj \
31 ecb3_enc.obj ofb_enc.obj cbc3_enc.obj read_pwd.obj\
32 cfb64enc.obj ofb64enc.obj ede_enc.obj cfb64ede.obj\
33 ofb64ede.obj supp.obj
34
35 LIB= libdes.lib
36
37 $(LIB): $(OBJS)
38 del $(LIB)
39 makersp "+%s &\n" &&|
40 $(OBJS)
41 | >libdes.rsp
42 $(TLIB) libdes.lib @libdes.rsp,nul
43 del libdes.rsp
44
45 destest.exe: destest.obj libdes.lib
46 rpw.exe: rpw.obj libdes.lib
47 speed.exe: speed.obj libdes.lib
48 des.exe: des.obj libdes.lib
49
50
OLDNEW
« no previous file with comments | « openssl/crypto/des/fcrypt_b.c ('k') | openssl/crypto/des/ncbc_enc.c » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698