diff options
| author | cvs2svn <admin@example.com> | 1998-10-19 21:47:12 +0000 |
|---|---|---|
| committer | cvs2svn <admin@example.com> | 1998-10-19 21:47:12 +0000 |
| commit | 5170039cf1df2194faa85741f0733977525cd5c0 (patch) | |
| tree | c667406046ddb1efca5ed4316b02e43494241660 /src/lib/libcrypto/des/Makefile.uni | |
| parent | 536c76cbb863bab152f19842ab88772c01e922c7 (diff) | |
| download | openbsd-OPENBSD_2_4_BASE.tar.gz openbsd-OPENBSD_2_4_BASE.tar.bz2 openbsd-OPENBSD_2_4_BASE.zip | |
This commit was manufactured by cvs2git to create tag 'OPENBSD_2_4_BASE'.OPENBSD_2_4_BASE
Diffstat (limited to 'src/lib/libcrypto/des/Makefile.uni')
| -rw-r--r-- | src/lib/libcrypto/des/Makefile.uni | 263 |
1 files changed, 263 insertions, 0 deletions
diff --git a/src/lib/libcrypto/des/Makefile.uni b/src/lib/libcrypto/des/Makefile.uni new file mode 100644 index 0000000000..8f1759748a --- /dev/null +++ b/src/lib/libcrypto/des/Makefile.uni | |||
| @@ -0,0 +1,263 @@ | |||
| 1 | # You must select the correct terminal control system to be used to | ||
| 2 | # turn character echo off when reading passwords. There a 5 systems | ||
| 3 | # SGTTY - the old BSD system | ||
| 4 | # TERMIO - most system V boxes | ||
| 5 | # TERMIOS - SGI (ala IRIX). | ||
| 6 | # VMS - the DEC operating system | ||
| 7 | # MSDOS - we all know what it is :-) | ||
| 8 | # read_pwd.c makes a reasonable guess at what is correct. | ||
| 9 | |||
| 10 | # Targets | ||
| 11 | # make - twidle the options yourself :-) | ||
| 12 | # make cc - standard cc options | ||
| 13 | # make gcc - standard gcc options | ||
| 14 | # make x86-elf - linux-elf etc | ||
| 15 | # make x86-out - linux-a.out, FreeBSD etc | ||
| 16 | # make x86-solaris | ||
| 17 | # make x86-bdsi | ||
| 18 | |||
| 19 | # If you are on a DEC Alpha, edit des.h and change the DES_LONG | ||
| 20 | # define to 'unsigned int'. I have seen this give a %20 speedup. | ||
| 21 | |||
| 22 | OPTS0= -DRAND -DTERMIO #-DNOCONST | ||
| 23 | |||
| 24 | # Version 1.94 has changed the strings_to_key function so that it is | ||
| 25 | # now compatible with MITs when the string is longer than 8 characters. | ||
| 26 | # If you wish to keep the old version, uncomment the following line. | ||
| 27 | # This will affect the -E/-D options on des(1). | ||
| 28 | #OPTS1= -DOLD_STR_TO_KEY | ||
| 29 | |||
| 30 | # There are 4 possible performance options | ||
| 31 | # -DDES_PTR | ||
| 32 | # -DDES_RISC1 | ||
| 33 | # -DDES_RISC2 (only one of DES_RISC1 and DES_RISC2) | ||
| 34 | # -DDES_UNROLL | ||
| 35 | # after the initial build, run 'des_opts' to see which options are best | ||
| 36 | # for your platform. There are some listed in options.txt | ||
| 37 | #OPTS2= -DDES_PTR | ||
| 38 | #OPTS3= -DDES_RISC1 # or DES_RISC2 | ||
| 39 | #OPTS4= -DDES_UNROLL | ||
| 40 | |||
| 41 | OPTS= $(OPTS0) $(OPTS1) $(OPTS2) $(OPTS3) $(OPTS4) | ||
| 42 | |||
| 43 | MAKE=make -f Makefile | ||
| 44 | #CC=cc | ||
| 45 | #CFLAG= -O | ||
| 46 | |||
| 47 | CC=gcc | ||
| 48 | #CFLAG= -O4 -funroll-loops -fomit-frame-pointer | ||
| 49 | CFLAG= -O3 -fomit-frame-pointer | ||
| 50 | |||
| 51 | CFLAGS=$(OPTS) $(CFLAG) | ||
| 52 | CPP=$(CC) -E | ||
| 53 | AS=as | ||
| 54 | |||
| 55 | # Assember version of des_encrypt*(). | ||
| 56 | DES_ENC=des_enc.o fcrypt_b.o # normal C version | ||
| 57 | #DES_ENC=asm/dx86-elf.o asm/yx86-elf.o # elf format x86 | ||
| 58 | #DES_ENC=asm/dx86-out.o asm/yx86-out.o # a.out format x86 | ||
| 59 | #DES_ENC=asm/dx86-sol.o asm/yx86-sol.o # solaris format x86 | ||
| 60 | #DES_ENC=asm/dx86bsdi.o asm/yx86basi.o # bsdi format x86 | ||
| 61 | |||
| 62 | LIBDIR=/usr/local/lib | ||
| 63 | BINDIR=/usr/local/bin | ||
| 64 | INCDIR=/usr/local/include | ||
| 65 | MANDIR=/usr/local/man | ||
| 66 | MAN1=1 | ||
| 67 | MAN3=3 | ||
| 68 | SHELL=/bin/sh | ||
| 69 | OBJ_LIT=cbc_enc.o ecb_enc.o $(DES_ENC) fcrypt.o set_key.o | ||
| 70 | OBJ_FULL=cbc_cksm.o $(OBJ_LIT) pcbc_enc.o \ | ||
| 71 | xcbc_enc.o qud_cksm.o cbc3_enc.o \ | ||
| 72 | cfb64ede.o cfb64enc.o cfb_enc.o ecb3_enc.o \ | ||
| 73 | enc_read.o enc_writ.o ofb64ede.o ofb64enc.o ofb_enc.o \ | ||
| 74 | rand_key.o read_pwd.o read2pwd.o rpc_enc.o str2key.o supp.o | ||
| 75 | |||
| 76 | GENERAL_LIT=COPYRIGHT INSTALL README VERSION Makefile des_crypt.man \ | ||
| 77 | des.doc options.txt asm | ||
| 78 | GENERAL_FULL=$(GENERAL_LIT) FILES Imakefile times vms.com KERBEROS MODES.DES \ | ||
| 79 | des.man DES.pm DES.pod DES.xs Makefile.PL dess.cpp des3s.cpp \ | ||
| 80 | Makefile.uni typemap t Makefile.ssl makefile.bc Makefile.lit \ | ||
| 81 | des.org des_locl.org | ||
| 82 | TESTING_LIT= destest speed des_opts | ||
| 83 | TESTING_FULL= rpw des $(TESTING_LIT) | ||
| 84 | TESTING_SRC_LIT=destest.c speed.c des_opts.c | ||
| 85 | TESTING_SRC_FULL=rpw.c des.c $(TESTING_SRC_LIT) | ||
| 86 | HEADERS_LIT=des_ver.h des.h des_locl.h podd.h sk.h spr.h | ||
| 87 | HEADERS_FULL= $(HEADERS_LIT) rpc_des.h | ||
| 88 | LIBDES_LIT=cbc_enc.c ecb_enc.c fcrypt.c set_key.c des_enc.c fcrypt_b.c | ||
| 89 | LIBDES_FULL= cbc_cksm.c pcbc_enc.c qud_cksm.c cbc3_enc.c \ | ||
| 90 | cfb64ede.c cfb64enc.c cfb_enc.c ecb3_enc.c \ | ||
| 91 | enc_read.c enc_writ.c ofb64ede.c ofb64enc.c ofb_enc.c \ | ||
| 92 | rand_key.c rpc_enc.c str2key.c supp.c \ | ||
| 93 | xcbc_enc.c $(LIBDES_LIT) read_pwd.c read2pwd.c | ||
| 94 | |||
| 95 | PERL= des.pl testdes.pl doIP doPC1 doPC2 PC1 PC2 shifts.pl | ||
| 96 | |||
| 97 | OBJ= $(OBJ_FULL) | ||
| 98 | GENERAL=$(GENERAL_FULL) | ||
| 99 | TESTING=$(TESTING_FULL) | ||
| 100 | TESTING_SRC=$(TESTING_SRC_FULL) | ||
| 101 | HEADERS=$(HEADERS_FULL) | ||
| 102 | LIBDES= $(LIBDES_FULL) | ||
| 103 | |||
| 104 | ALL= $(GENERAL) $(TESTING_SRC) $(LIBDES) $(PERL) $(HEADERS) | ||
| 105 | |||
| 106 | DLIB= libdes.a | ||
| 107 | |||
| 108 | all: $(DLIB) $(TESTING) | ||
| 109 | |||
| 110 | cc: | ||
| 111 | $(MAKE) CC=cc CFLAGS="-O $(OPTS) $(CFLAG)" all | ||
| 112 | |||
| 113 | gcc: | ||
| 114 | $(MAKE) CC=gcc CFLAGS="-O3 -fomit-frame-pointer $(OPTS) $(CFLAG)" all | ||
| 115 | |||
| 116 | x86-elf: | ||
| 117 | $(MAKE) DES_ENC='asm/dx86-elf.o asm/yx86-elf.o' CC=$(CC) CFLAGS="-DELF $(OPTS) $(CFLAG)" all | ||
| 118 | |||
| 119 | x86-out: | ||
| 120 | $(MAKE) DES_ENC='asm/dx86-out.o asm/yx86-out.o' CC=$(CC) CFLAGS="-DOUT $(OPTS) $(CFLAG)" all | ||
| 121 | |||
| 122 | x86-solaris: | ||
| 123 | $(MAKE) DES_ENC='asm/dx86-sol.o asm/yx86-sol.o' CC=$(CC) CFLAGS="-DSOL $(OPTS) $(CFLAG)" all | ||
| 124 | |||
| 125 | x86-bsdi: | ||
| 126 | $(MAKE) DES_ENC='asm/dx86bsdi.o asm/yx86bsdi.o' CC=$(CC) CFLAGS="-DBSDI $(OPTS) $(CFLAG)" all | ||
| 127 | |||
| 128 | # elf | ||
| 129 | asm/dx86-elf.o: asm/dx86unix.cpp | ||
| 130 | $(CPP) -DELF asm/dx86unix.cpp | $(AS) -o asm/dx86-elf.o | ||
| 131 | |||
| 132 | asm/yx86-elf.o: asm/yx86unix.cpp | ||
| 133 | $(CPP) -DELF asm/yx86unix.cpp | $(AS) -o asm/yx86-elf.o | ||
| 134 | |||
| 135 | # solaris | ||
| 136 | asm/dx86-sol.o: asm/dx86unix.cpp | ||
| 137 | $(CC) -E -DSOL asm/dx86unix.cpp | sed 's/^#.*//' > asm/dx86-sol.s | ||
| 138 | as -o asm/dx86-sol.o asm/dx86-sol.s | ||
| 139 | rm -f asm/dx86-sol.s | ||
| 140 | |||
| 141 | asm/yx86-sol.o: asm/yx86unix.cpp | ||
| 142 | $(CC) -E -DSOL asm/yx86unix.cpp | sed 's/^#.*//' > asm/yx86-sol.s | ||
| 143 | as -o asm/yx86-sol.o asm/yx86-sol.s | ||
| 144 | rm -f asm/yx86-sol.s | ||
| 145 | |||
| 146 | # a.out | ||
| 147 | asm/dx86-out.o: asm/dx86unix.cpp | ||
| 148 | $(CPP) -DOUT asm/dx86unix.cpp | $(AS) -o asm/dx86-out.o | ||
| 149 | |||
| 150 | asm/yx86-out.o: asm/yx86unix.cpp | ||
| 151 | $(CPP) -DOUT asm/yx86unix.cpp | $(AS) -o asm/yx86-out.o | ||
| 152 | |||
| 153 | # bsdi | ||
| 154 | asm/dx86bsdi.o: asm/dx86unix.cpp | ||
| 155 | $(CPP) -DBSDI asm/dx86unix.cpp | $(AS) -o asm/dx86bsdi.o | ||
| 156 | |||
| 157 | asm/yx86bsdi.o: asm/yx86unix.cpp | ||
| 158 | $(CPP) -DBSDI asm/yx86unix.cpp | $(AS) -o asm/yx86bsdi.o | ||
| 159 | |||
| 160 | asm/dx86unix.cpp: | ||
| 161 | (cd asm; perl des-586.pl cpp >dx86unix.cpp) | ||
| 162 | |||
| 163 | asm/yx86unix.cpp: | ||
| 164 | (cd asm; perl crypt586.pl cpp >yx86unix.cpp) | ||
| 165 | |||
| 166 | test: all | ||
| 167 | ./destest | ||
| 168 | |||
| 169 | $(DLIB): $(OBJ) | ||
| 170 | /bin/rm -f $(DLIB) | ||
| 171 | ar cr $(DLIB) $(OBJ) | ||
| 172 | -if test -s /bin/ranlib; then /bin/ranlib $(DLIB); \ | ||
| 173 | else if test -s /usr/bin/ranlib; then /usr/bin/ranlib $(DLIB); \ | ||
| 174 | else exit 0; fi; fi | ||
| 175 | |||
| 176 | des_opts: des_opts.o $(DLIB) | ||
| 177 | $(CC) $(CFLAGS) -o des_opts des_opts.o $(DLIB) | ||
| 178 | |||
| 179 | destest: destest.o $(DLIB) | ||
| 180 | $(CC) $(CFLAGS) -o destest destest.o $(DLIB) | ||
| 181 | |||
| 182 | rpw: rpw.o $(DLIB) | ||
| 183 | $(CC) $(CFLAGS) -o rpw rpw.o $(DLIB) | ||
| 184 | |||
| 185 | speed: speed.o $(DLIB) | ||
| 186 | $(CC) $(CFLAGS) -o speed speed.o $(DLIB) | ||
| 187 | |||
| 188 | des: des.o $(DLIB) | ||
| 189 | $(CC) $(CFLAGS) -o des des.o $(DLIB) | ||
| 190 | |||
| 191 | tags: | ||
| 192 | ctags $(TESTING_SRC) $(LIBDES) | ||
| 193 | |||
| 194 | tar_lit: | ||
| 195 | /bin/mv Makefile Makefile.tmp | ||
| 196 | /bin/cp Makefile.lit Makefile | ||
| 197 | for i in $(HEADERS_LIT) $(LIBDES_LIT) $(GENERAL_LIT) $(TESTING_SRC_LIT) ;\ | ||
| 198 | do \ | ||
| 199 | n="$$n des/$$i"; \ | ||
| 200 | done; \ | ||
| 201 | ( cd .. ; tar chf - $$n )| gzip > libdes-l.tgz | ||
| 202 | /bin/rm -f Makefile | ||
| 203 | /bin/mv Makefile.tmp Makefile | ||
| 204 | |||
| 205 | tar: | ||
| 206 | mv Makefile Makefile.tmp | ||
| 207 | /bin/cp Makefile.uni Makefile | ||
| 208 | for i in $(ALL) ;\ | ||
| 209 | do \ | ||
| 210 | n="$$n des/$$i"; \ | ||
| 211 | done; \ | ||
| 212 | ( cd .. ; tar chf - $$n )| gzip > libdes.tgz | ||
| 213 | /bin/rm -f Makefile | ||
| 214 | /bin/mv Makefile.tmp Makefile | ||
| 215 | |||
| 216 | shar: | ||
| 217 | shar $(ALL) >libdes.shar | ||
| 218 | |||
| 219 | depend: | ||
| 220 | makedepend $(LIBDES) $(TESTING_SRC) | ||
| 221 | |||
| 222 | clean: | ||
| 223 | /bin/rm -f *.o tags core $(TESTING) $(DLIB) .nfs* *.old *.bak asm/*.o | ||
| 224 | |||
| 225 | dclean: | ||
| 226 | sed -e '/^# DO NOT DELETE THIS LINE/ q' Makefile >Makefile.new | ||
| 227 | mv -f Makefile.new Makefile | ||
| 228 | |||
| 229 | # Eric is probably going to choke when he next looks at this --tjh | ||
| 230 | install: des | ||
| 231 | if test $(INSTALLTOP); then \ | ||
| 232 | echo SSL style install; \ | ||
| 233 | cp $(DLIB) $(INSTALLTOP)/lib; \ | ||
| 234 | if test -s /bin/ranlib; then \ | ||
| 235 | /bin/ranlib $(INSTALLTOP)/lib/$(DLIB); \ | ||
| 236 | else \ | ||
| 237 | if test -s /usr/bin/ranlib; then \ | ||
| 238 | /usr/bin/ranlib $(INSTALLTOP)/lib/$(DLIB); \ | ||
| 239 | fi; fi; \ | ||
| 240 | chmod 644 $(INSTALLTOP)/lib/$(DLIB); \ | ||
| 241 | cp des.h $(INSTALLTOP)/include; \ | ||
| 242 | chmod 644 $(INSTALLTOP)/include/des.h; \ | ||
| 243 | else \ | ||
| 244 | echo Standalone install; \ | ||
| 245 | cp $(DLIB) $(LIBDIR)/$(DLIB); \ | ||
| 246 | if test -s /bin/ranlib; then \ | ||
| 247 | /bin/ranlib $(LIBDIR)/$(DLIB); \ | ||
| 248 | else \ | ||
| 249 | if test -s /usr/bin/ranlib; then \ | ||
| 250 | /usr/bin/ranlib $(LIBDIR)/$(DLIB); \ | ||
| 251 | fi; \ | ||
| 252 | fi; \ | ||
| 253 | chmod 644 $(LIBDIR)/$(DLIB); \ | ||
| 254 | cp des $(BINDIR)/des; \ | ||
| 255 | chmod 711 $(BINDIR)/des; \ | ||
| 256 | cp des_crypt.man $(MANDIR)/man$(MAN3)/des_crypt.$(MAN3); \ | ||
| 257 | chmod 644 $(MANDIR)/man$(MAN3)/des_crypt.$(MAN3); \ | ||
| 258 | cp des.man $(MANDIR)/man$(MAN1)/des.$(MAN1); \ | ||
| 259 | chmod 644 $(MANDIR)/man$(MAN1)/des.$(MAN1); \ | ||
| 260 | cp des.h $(INCDIR)/des.h; \ | ||
| 261 | chmod 644 $(INCDIR)/des.h; \ | ||
| 262 | fi | ||
| 263 | # DO NOT DELETE THIS LINE -- make depend depends on it. | ||
