Files
2026-04-23 17:07:55 +08: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)