aboutsummaryrefslogtreecommitdiffstats
path: root/recipes-security/libmhash/files/Makefile.test
blob: 2e32626e24dfd6f203ff5cca54ed07d0c8ce2acc (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
#
# 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)