Add the 'hammer cleanup' command. This is a meta-command which will
[dragonfly.git] / sbin / hammer / Makefile
1 #
2 # $DragonFly: src/sbin/hammer/Makefile,v 1.18 2008/09/20 04:23:21 dillon Exp $
3
4 PROG=   hammer
5 SRCS=   hammer.c ondisk.c blockmap.c cache.c misc.c cycle.c \
6         cmd_show.c cmd_softprune.c cmd_history.c \
7         cmd_blockmap.c cmd_reblock.c cmd_synctid.c cmd_stats.c \
8         cmd_pseudofs.c cmd_snapshot.c cmd_mirror.c cmd_status.c \
9         cmd_cleanup.c
10 MAN=    hammer.8
11
12 CFLAGS+= -I${.CURDIR}/../../sys -DALIST_NO_DEBUG
13 LDADD= -lm
14
15 .PATH: ${.CURDIR}/../../sys/libkern
16 SRCS+= crc32.c
17
18 .include <bsd.prog.mk>