]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - tools/regression/geom/ConfCmp/Makefile
MFV r331695, 331700: 9166 zfs storage pool checkpoint
[FreeBSD/FreeBSD.git] / tools / regression / geom / ConfCmp / Makefile
1 # $FreeBSD$
2
3 PROG=   ConfCmp
4 SRCS+=  ConfCmp.c
5 SRCS+=  subr_sbuf.c
6
7 .PATH:  ../../../../sys/kern
8
9 NO_OBJ=
10 WARNS?= 5
11 CFLAGS+=         -g -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -static
12 # Uncomment for ElectricFence
13 #LDADD += -lefence -L/usr/local/lib
14
15 LIBADD= bsdxml
16
17 MAN=
18 CLEANFILES      += _*
19
20 .include <bsd.prog.mk>
21
22 test:   ${PROG}
23         rm -f _* *.core
24         ./${PROG} a1.conf a1.conf
25         ./${PROG} a1.conf a1a.conf 
26         if ./${PROG} a1.conf a1b.conf > /dev/null 2>&1 ; then exit 1 ; fi
27         if ./${PROG} a1.conf a1c.conf > /dev/null 2>&1 ; then exit 1 ; fi
28         if ./${PROG} a1.conf a1d.conf > /dev/null 2>&1 ; then exit 1 ; fi
29         ./${PROG} a2.conf a2.conf
30         ./${PROG} a2.conf a2a.conf
31         if ./${PROG} a2.conf a2b.conf > /dev/null 2>&1 ; then exit 1 ; fi
32         if ./${PROG} a2.conf a2c.conf > /dev/null 2>&1 ; then exit 1 ; fi
33         if ./${PROG} a2.conf a2d.conf > /dev/null 2>&1 ; then exit 1 ; fi
34