[BACK]Return to Makefile CVS log [TXT][DIR] Up to [local] / sys / arch / i386

File: [local] / sys / arch / i386 / Makefile (download)

Revision 1.1, Tue Mar 4 16:05:59 2008 UTC (16 years, 2 months ago) by nbrk
Branch point for: MAIN

Initial revision

#	$OpenBSD: Makefile,v 1.16 2006/07/29 12:18:44 thib Exp $
#	$NetBSD: Makefile,v 1.6 1996/02/01 22:31:28 mycroft Exp $
#	@(#)Makefile	7.3 (Berkeley) 6/9/91

# Makefile for i386 tags file and boot blocks

S=${.CURDIR}/../..
.include "$S/kern/Make.tags.inc"

NOPROG=	noprog
NOMAN=	noman

SUBDIR=	stand

TI386=	$S/arch/i386/tags
SI386=	$S/arch/i386/eisa/*.[ch] $S/arch/i386/i386/*.[ch] \
	$S/arch/i386/include/*.h $S/arch/i386/include/pc/*.h \
	$S/arch/i386/isa/*.[ch] $S/arch/i386/pci/*.[ch]
AI386=	$S/arch/i386/i386/*.[sS] $S/arch/i386/isa/*.[sS] \
	$S/lib/libkern/arch/i386/*.[sS]

# Directories in which to place i386 tags links
DI386=	conf eisa i386 include isa pci

tags:
	-ctags -wdtf ${TI386} ${COMM} ${SI386}
	egrep "^ENTRY(.*)|^ALTENTRY(.*)" ${AI386} | \
	    sed "s;\([^:]*\):\([^(]*\)(\([^, )]*\)\(.*\);\3	\1	/^\2(\3\4$$/;" \
		>> ${TI386}
	sort -o ${TI386} ${TI386}

links:
	-for i in ${DI386}; do \
	    (cd $$i && rm -f tags; ln -s ${TI386} tags); done

obj:	_SUBDIRUSE

.include <bsd.prog.mk>