head	1.8;
access;
symbols
	RELENG_6_4_0_RELEASE:1.7.20.1
	RELENG_6_4:1.7.0.20
	RELENG_6_4_BP:1.7
	RELENG_6_3_0_RELEASE:1.7
	RELENG_6_3:1.7.0.18
	RELENG_6_3_BP:1.7
	RELENG_6_2_0_RELEASE:1.7
	RELENG_6_2:1.7.0.16
	RELENG_6_2_BP:1.7
	RELENG_5_5_0_RELEASE:1.7
	RELENG_5_5:1.7.0.14
	RELENG_5_5_BP:1.7
	RELENG_6_1_0_RELEASE:1.7
	RELENG_6_1:1.7.0.12
	RELENG_6_1_BP:1.7
	RELENG_6_0_0_RELEASE:1.7
	RELENG_6_0:1.7.0.10
	RELENG_6_0_BP:1.7
	RELENG_6:1.7.0.8
	RELENG_6_BP:1.7
	RELENG_5_4_0_RELEASE:1.7
	RELENG_5_4:1.7.0.6
	RELENG_5_4_BP:1.7
	RELENG_5_3_0_RELEASE:1.7
	RELENG_5_3:1.7.0.4
	RELENG_5_3_BP:1.7
	RELENG_5:1.7.0.2
	RELENG_5_BP:1.7
	RELENG_5_2_1_RELEASE:1.6
	RELENG_5_2_0_RELEASE:1.6
	RELENG_5_2:1.6.0.6
	RELENG_5_2_BP:1.6
	RELENG_5_1_0_RELEASE:1.6
	RELENG_5_1:1.6.0.4
	RELENG_5_1_BP:1.6
	RELENG_5_0_0_RELEASE:1.6
	RELENG_5_0:1.6.0.2
	RELENG_5_0_BP:1.6
	KSE_MILESTONE_2:1.5
	KSE_PRE_MILESTONE_2:1.5;
locks; strict;
comment	@# @;


1.8
date	2006.05.14.18.37.03;	author scottl;	state dead;
branches;
next	1.7;

1.7
date	2004.02.13.10.11.00;	author ru;	state Exp;
branches
	1.7.8.1
	1.7.20.1;
next	1.6;

1.6
date	2002.11.06.13.46.58;	author nyan;	state Exp;
branches;
next	1.5;

1.5
date	2001.07.04.13.00.20;	author nyan;	state Exp;
branches;
next	1.4;

1.4
date	2001.02.04.12.35.21;	author peter;	state Exp;
branches;
next	1.3;

1.3
date	2001.01.06.13.59.54;	author obrien;	state Exp;
branches;
next	1.2;

1.2
date	2000.12.29.11.46.17;	author paul;	state Exp;
branches;
next	1.1;

1.1
date	2000.12.16.01.47.37;	author paul;	state Exp;
branches;
next	;

1.7.8.1
date	2012.11.17.07.44.20;	author svnexp;	state Exp;
branches;
next	;

1.7.20.1
date	2008.10.02.02.57.24;	author kensmith;	state Exp;
branches;
next	;


desc
@@


1.8
log
@Remove the lnc module Makefile.
@
text
@# $FreeBSD: src/sys/modules/lnc/Makefile,v 1.7 2004/02/13 10:11:00 ru Exp $

.PATH: ${.CURDIR}/../../dev/lnc

KMOD=	if_lnc
SRCS=	if_lnc.c if_lnc_pci.c
.if ${MACHINE} == "pc98"
SRCS+=	if_lnc_cbus.c
.else
SRCS+=	if_lnc_isa.c
.endif
SRCS+=	opt_inet.h device_if.h bus_if.h isa_if.h pci_if.h
#SRCS+=	miibus_if.h

CFLAGS+= -I${.CURDIR}/../../dev/lnc

.include <bsd.kmod.mk>
@


1.7
log
@Removed -g from CFLAGS.  There is a better way to build debugging
versions of the modules, and unconditionally putting -g in CFLAGS
has negative impact on the size of the resulting .ko object, even
now that debugging symbols are always stripped.
@
text
@d1 1
a1 1
# $FreeBSD$
@


1.7.8.1
log
@Switch importer
@
text
@d1 1
a1 1
# $FreeBSD: stable/6/sys/modules/lnc/Makefile 125771 2004-02-13 10:11:01Z ru $
@


1.7.20.1
log
@SVN rev 183531 on 2008-10-02 02:57:24Z by kensmith

Create releng/6.4 from stable/6 in preparation for 6.4-RC1.

Approved by:	re (implicit)
@
text
@@


1.6
log
@Move adding -DPC98 to CFLAGS from each modules to sys/modules/Makefile.inc.
@
text
@d15 1
a15 1
CFLAGS+= -g -I${.CURDIR}/../../dev/lnc
@


1.5
log
@- Don't overwrite inb, inw and outw.
- Move the lance_probe function to if_lnc.c.
- Support C-NET(98)S again.

Submitted by:		chi@@bd.mbn.or.jp (Chiharu Shibata) and nyan
No response from:	Paul Richards
@
text
@d1 1
a1 1
# $FreeBSD: src/sys/modules/lnc/Makefile,v 1.4 2001/02/04 12:35:21 peter Exp $
a15 3
.if ${MACHINE} == "pc98"
CFLAGS+= -DPC98
.endif
@


1.4
log
@Remove some stray traces of KMODDEPS
@
text
@d1 1
a1 1
# $FreeBSD: src/sys/modules/lnc/Makefile,v 1.3 2001/01/06 13:59:54 obrien Exp $
d6 6
a11 1
SRCS=	if_lnc.c if_lnc_pci.c if_lnc_isa.c if_lnc_pc98.c
d16 3
@


1.3
log
@Use a consistent style and one much closer to the rest of /usr/src
@
text
@d1 1
a1 1
# $FreeBSD: src/sys/modules/lnc/Makefile,v 1.2 2000/12/29 11:46:17 paul Exp $
a8 1
#KMODDEPS = miibus
@


1.2
log
@Change the module name from lnc to if_lnc so that ifconfig works.
@
text
@d1 1
a1 1
# $FreeBSD: src/sys/modules/lnc/Makefile,v 1.1 2000/12/16 01:47:37 paul Exp $
d3 6
a8 5
.PATH:	${.CURDIR}/../../dev/lnc
KMOD	= if_lnc
SRCS	= if_lnc.c if_lnc_pci.c if_lnc_isa.c if_lnc_pc98.c
SRCS	+= opt_inet.h device_if.h bus_if.h isa_if.h pci_if.h
#SRCS	+= miibus_if.h
d10 2
a11 1
CFLAGS += -g -I${.CURDIR}/../../dev/lnc
@


1.1
log
@Add lnc module.
@
text
@d1 1
a1 1
# $FreeBSD: $
d4 1
a4 1
KMOD	= lnc
@

