Files
Jackie Huang aae40f506a libmhash: add new recipe
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>
2017-08-13 08:26:14 -07:00

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)