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)
|