Deleted Added
full compact
Makefile (126200) Makefile (136910)
1# $FreeBSD: head/tools/regression/geom/ConfCmp/Makefile 126200 2004-02-24 20:52:58Z johan $
1# $FreeBSD: head/tools/regression/geom/ConfCmp/Makefile 136910 2004-10-24 15:33:08Z ru $
2
3PROG= ConfCmp
4SRCS+= ConfCmp.c
5SRCS+= subr_sbuf.c
6
7.PATH: ../../../../sys/kern
8
2
3PROG= ConfCmp
4SRCS+= ConfCmp.c
5SRCS+= subr_sbuf.c
6
7.PATH: ../../../../sys/kern
8
9NOOBJ= youbet
9NOOBJ=
10WARNS?= 5
11CFLAGS+= -g -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -static
12# Uncomment for ElectricFence
13#LDADD += -lefence -L/usr/local/lib
14
15DPADD += ${LIBBSDXML}
16LDADD += -lbsdxml
17
10WARNS?= 5
11CFLAGS+= -g -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -static
12# Uncomment for ElectricFence
13#LDADD += -lefence -L/usr/local/lib
14
15DPADD += ${LIBBSDXML}
16LDADD += -lbsdxml
17
18NOMAN= yeah
18NOMAN=
19CLEANFILES += _*
20
21.include <bsd.prog.mk>
22
23test: ${PROG}
24 rm -f _* *.core
25 ./${PROG} a1.conf a1.conf
26 ./${PROG} a1.conf a1a.conf
27 if ./${PROG} a1.conf a1b.conf > /dev/null 2>&1 ; then exit 1 ; fi
28 if ./${PROG} a1.conf a1c.conf > /dev/null 2>&1 ; then exit 1 ; fi
29 if ./${PROG} a1.conf a1d.conf > /dev/null 2>&1 ; then exit 1 ; fi
30 ./${PROG} a2.conf a2.conf
31 ./${PROG} a2.conf a2a.conf
32 if ./${PROG} a2.conf a2b.conf > /dev/null 2>&1 ; then exit 1 ; fi
33 if ./${PROG} a2.conf a2c.conf > /dev/null 2>&1 ; then exit 1 ; fi
34 if ./${PROG} a2.conf a2d.conf > /dev/null 2>&1 ; then exit 1 ; fi
35
19CLEANFILES += _*
20
21.include <bsd.prog.mk>
22
23test: ${PROG}
24 rm -f _* *.core
25 ./${PROG} a1.conf a1.conf
26 ./${PROG} a1.conf a1a.conf
27 if ./${PROG} a1.conf a1b.conf > /dev/null 2>&1 ; then exit 1 ; fi
28 if ./${PROG} a1.conf a1c.conf > /dev/null 2>&1 ; then exit 1 ; fi
29 if ./${PROG} a1.conf a1d.conf > /dev/null 2>&1 ; then exit 1 ; fi
30 ./${PROG} a2.conf a2.conf
31 ./${PROG} a2.conf a2a.conf
32 if ./${PROG} a2.conf a2b.conf > /dev/null 2>&1 ; then exit 1 ; fi
33 if ./${PROG} a2.conf a2c.conf > /dev/null 2>&1 ; then exit 1 ; fi
34 if ./${PROG} a2.conf a2d.conf > /dev/null 2>&1 ; then exit 1 ; fi
35