Home | History | Annotate | Line # | Download | only in landisk
Makefile revision 1.1.72.1
      1  1.1.72.1  haad #	$NetBSD: Makefile,v 1.1.72.1 2008/12/13 01:13:15 haad Exp $
      2       1.1   uwe 
      3       1.1   uwe # Makefile for landisk tags file and boot blocks
      4       1.1   uwe 
      5       1.1   uwe TLANDISK=	../landisk/tags
      6       1.1   uwe SLANDISK=	../landisk/landisk/*.[ch] ../landisk/include/*.h
      7       1.1   uwe ALANDISK=	../landisk/landisk/*.[sS]
      8       1.1   uwe 
      9       1.1   uwe # Directories in which to place tags links
     10       1.1   uwe DLANDISK=	landisk include
     11       1.1   uwe 
     12       1.1   uwe .include "../../kern/Make.tags.inc"
     13       1.1   uwe 
     14       1.1   uwe tags:
     15       1.1   uwe 	-ctags -wdtf ${TLANDISK} ${SLANDISK} ${COMM}
     16       1.1   uwe 	egrep "^ENTRY(.*)|^ALTENTRY(.*)" ${ALANDISK} | \
     17  1.1.72.1  haad 	    ${TOOL_SED} -e \
     18  1.1.72.1  haad 		"s;\([^:]*\):\([^(]*\)(\([^, )]*\)\(.*\);\3 \1 /^\2(\3\4$$/;" \
     19       1.1   uwe 		>> ${TLANDISK}
     20       1.1   uwe 	sort -o ${TLANDISK} ${TLANDISK}
     21       1.1   uwe 
     22       1.1   uwe links:
     23       1.1   uwe 	-for i in ${DLANDISK}; do \
     24       1.1   uwe 	    (cd $$i && rm -f tags; ln -s ../tags tags); done
     25       1.1   uwe 
     26       1.1   uwe SUBDIR=	compile include	stand
     27       1.1   uwe 
     28       1.1   uwe .include <bsd.subdir.mk>
     29