mirror of
https://git.yoctoproject.org/meta-security
synced 2026-05-09 17:40:32 +00:00
aae40f506a
Mhash is a free (under GNU Lesser GPL) library which provides a uniform interface to a large number of hash algorithms. These algorithms can be used to compute checksums, message digests, and other signatures. Signed-off-by: Jackie Huang <jackie.huang@windriver.com> Signed-off-by: Armin Kuster <akuster808@gmail.com>
14 lines
166 B
Makefile
14 lines
166 B
Makefile
#
|
|
# Makefile for compiling mhash tests
|
|
#
|
|
|
|
ALL = mhash
|
|
|
|
all: $(ALL)
|
|
|
|
mhash: mhash.c
|
|
$(CC) $(CFLAGS) $(LDFLAGS) -o mhash mhash.c -lmhash
|
|
|
|
clean:
|
|
rm -f *.debug $(ALL)
|