aboutsummaryrefslogtreecommitdiff
path: root/lib/libmd/Makefile
Commit message (Collapse)AuthorAgeFilesLines
...
* Don't even attempt to build the assembly-language versions of RIPEMD160Garrett Wollman1999-03-011-1/+3
| | | | | | | | | and SHA-1 when OBJFORMAT is not ELF. Add a warning to the man page about how SHA-1 uses bswapl, which will trap on 80386es (and the kernel should, but doesn't currently, emulate). Notes: svn path=/head/; revision=44356
* Add Eric Young's RIPEMD160 implementation as well, in case SHA-1Garrett Wollman1999-02-261-5/+35
| | | | | | | should prove weak. Also fix a few problems with the SHA-1 build. Notes: svn path=/head/; revision=44301
* Fix bug in MDx test suite.Garrett Wollman1999-02-261-9/+62
| | | | | | | Add Eric Young's SHA-[01] implementations. Notes: svn path=/head/; revision=44290
* Build libmd shared for a.out too. Required for some PAM modules.John Polstra1998-11-121-4/+1
| | | | Notes: svn path=/head/; revision=41106
* $@ -> ${.TARGET}Warner Losh1998-09-111-34/+34
| | | | Notes: svn path=/head/; revision=39063
* BINFORMAT -> OBJFORMAT ready for E-day.John Birrell1998-08-301-2/+2
| | | | Notes: svn path=/head/; revision=38632
* Don't use the beforedepend target. It was a no-op here except forBruce Evans1998-03-191-3/+1
| | | | | | | helping bsd.dep.mk break `make -jN depend'. Notes: svn path=/head/; revision=34685
* If not building a.out, still build a pic version of libmd. This allowsPeter Wemm1997-09-051-1/+3
| | | | | | | | | | | things like libskey.so to be dynamically self contained. Things like md5(1) where speed is critical should still link with libmd.a, but for things like login, where it's a once-off call if skey is used, it's not worth the hassle. Notes: svn path=/head/; revision=29142
* Revert $FreeBSD$ to $Id$Peter Wemm1997-02-221-1/+1
| | | | Notes: svn path=/head/; revision=22993
* Make the long-awaited change from $Id$ to $FreeBSD$Jordan K. Hubbard1997-01-141-1/+1
| | | | | | | | | | | This will make a number of things easier in the future, as well as (finally!) avoiding the Id-smashing problem which has plagued developers for so long. Boy, I'm glad we're not using sup anymore. This update would have been insane otherwise. Notes: svn path=/head/; revision=21673
* cmp -s || install -c ==> install -C, use a .for loopPeter Wemm1996-08-301-10/+5
| | | | Notes: svn path=/head/; revision=17931
* Don't install mdX.3, it's the template used to build the other pages.Poul-Henning Kamp1996-02-091-2/+2
| | | | Notes: svn path=/head/; revision=14007
* Bill was a little to fast here...Poul-Henning Kamp1996-02-091-3/+1
| | | | Notes: svn path=/head/; revision=14005
* Add some missing MLINKS, correct some cross references, correct someMike Pritchard1996-02-091-6/+2
| | | | | | | file locations and some minor formatting/style problems. Notes: svn path=/head/; revision=14003
* Added some missing MLINKS for section 3 man pages.Mike Pritchard1996-02-091-0/+2
| | | | | | | | | | Also corrected a few minor formatting errors, file location and cross references in some of the section 3 man pages. This shuts up a lot of the output from "manck" for section 3. Notes: svn path=/head/; revision=13987
* Back out that last change; we don't build this shared.David Greenman1995-09-061-2/+0
| | | | Notes: svn path=/head/; revision=10591
* Bumped shared lib rev to 2.1.David Greenman1995-09-061-0/+2
| | | | Notes: svn path=/head/; revision=10590
* Change `install' to `${INSTALL}' so that default install flags can beBruce Evans1995-08-061-3/+3
| | | | | | | | | | specified in the top level Makefiles. Previously I missed dozens of Makefiles that skip the install after using `cmp -s' to decide that the install isn't necessary. Notes: svn path=/head/; revision=9970
* Change this to do what it should have done from the start.Poul-Henning Kamp1995-07-121-7/+11
| | | | | | | | Add argument for buffer for output. Fix manuals. Notes: svn path=/head/; revision=9488
* Remove trailing whitespace.Rodney W. Grimes1995-05-301-3/+3
| | | | Notes: svn path=/head/; revision=8870
* Eliminate a bogus tab.Jordan K. Hubbard1995-01-241-1/+1
| | | | Notes: svn path=/head/; revision=5820
* Clean up beforeinstallPaul Traina1994-11-011-6/+3
| | | | Notes: svn path=/head/; revision=4043
* Added beforeinstall rule to install .h files. We might need some .mkPoul-Henning Kamp1994-09-191-0/+14
| | | | | | | support for this kind of thing. Look at src/Makefile target "includes". Notes: svn path=/head/; revision=2882
* libmd no longer built as shared-lib, only static.Poul-Henning Kamp1994-09-181-2/+3
| | | | | | | Renamed the beforeinstall to test. Notes: svn path=/head/; revision=2848
* Build *.3 and *.ref at build time, not at install time.Bruce Evans1994-09-081-1/+3
| | | | Notes: svn path=/head/; revision=2577
* Make mddriver static.Jordan K. Hubbard1994-09-041-3/+3
| | | | | | | Submitted by: jkh Notes: svn path=/head/; revision=2487
* Use ${LDFLAGS} instead of static for compiling binaries. Neither isBruce Evans1994-08-281-8/+8
| | | | | | | | | | sufficient for cross compiling but it's best to test with the flags normally used. Use ${ECHO} instead of `echo' so that `make -s' is fairly quiet. Notes: svn path=/head/; revision=2368
* Added ${.CURDIRb to vuilding of man pages so it works with objPaul Richards1994-08-251-3/+3
| | | | | | | Submitted by: Paul Richards Notes: svn path=/head/; revision=2274
* Boy, was *this* ever bollixed!Jordan K. Hubbard1994-08-081-17/+17
| | | | | | | | | | | | | | | | | 1. Copyright files looked for in the wrong place 2. cmp was looking in wrong place for test data. 3. Driver for test not linked static, thus dynamic resolution of library not working. 4. Man page installation not consistent with source. Reviewed by: Submitted by: jkh Notes: svn path=/head/; revision=1964
* Make obj directory work right. md?hl.c should probably beGarrett Wollman1994-08-041-0/+3
| | | | | | | deleted, but I'll leave that up to PHK. Notes: svn path=/head/; revision=1846
* Reviewed by: phkPoul-Henning Kamp1994-07-241-0/+79
Imported libmd. This library contains MD2, MD4 and MD5. These three boggers pop up all over the place all of the time, so I decided we needed a library with them. In general they are used for security checks, so if you use them you want to link them static. Notes: svn path=/cvs2svn/branches/ORIG/; revision=1802