]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - 6/sbin/atm/atm/Makefile
merge fix for boot-time hang on centos' xen
[FreeBSD/FreeBSD.git] / 6 / sbin / atm / atm / Makefile
1 # ===================================
2 # HARP  |  Host ATM Research Platform
3 # ===================================
4 #
5 # This Host ATM Research Platform ("HARP") file (the "Software") is
6 # made available by Network Computing Services, Inc. ("NetworkCS")
7 # "AS IS".  NetworkCS does not provide maintenance, improvements or
8 # support of any kind.
9 #
10 # NETWORKCS MAKES NO WARRANTIES OR REPRESENTATIONS, EXPRESS OR IMPLIED,
11 # INCLUDING, BUT NOT LIMITED TO, IMPLIED WARRANTIES OF MERCHANTABILITY
12 # AND FITNESS FOR A PARTICULAR PURPOSE, AS TO ANY ELEMENT OF THE
13 # SOFTWARE OR ANY SUPPORT PROVIDED IN CONNECTION WITH THIS SOFTWARE.
14 # In no event shall NetworkCS be responsible for any damages, including
15 # but not limited to consequential damages, arising from or relating to
16 # any use of the Software or related support.
17 #
18 # Copyright 1994-1998 Network Computing Services, Inc.
19 #
20 # Copies of this Software may be made, however, the above copyright
21 # notice must be reproduced on all copies.
22 #
23 #       @(#) $Id: Makefile,v 1.5 1998/07/10 16:01:58 jpt Exp $
24 # $FreeBSD$
25
26 PROG=   atm
27 SRCS=   atm.c atm_fore200.c atm_inet.c atm_print.c \
28         atm_set.c atm_show.c atm_subr.c
29 MAN=    atm.8
30
31 .if ${MACHINE_ARCH} == "arm"
32 WARNS?= 3
33 .else
34 WARNS?= 6
35 .endif
36
37 CFLAGS+= -I${.CURDIR}/../../../sys
38
39 DPADD=  ${LIBATM}
40 LDADD=  -latm
41
42 .include <bsd.prog.mk>