1 # $NetBSD: Makefile,v 1.1 2004/10/13 23:28:35 gavan Exp $ 2 3 # Makefile for iyonix tags file and boot blocks 4 5 TIYONIX= ../iyonix/tags 6 SIYONIX= ../iyonix/include/*.h \ 7 ../iyonix/dev/*.[ch] \ 8 #AIYONIX= 9 10 # Directories in which to place tags links 11 DIYONIX= include 12 13 .include "../../kern/Make.tags.inc" 14 15 tags: 16 -ctags -wdtf ${TIYONIX} ${SIYONIX} ${COMM} 17 # egrep "^ENTRY(.*)|^ALTENTRY(.*)" ${AIYONIX} | \ 18 # sed "s;\([^:]*\):\([^(]*\)(\([^, )]*\)\(.*\);\3 \1 /^\2(\3\4$$/;" \ 19 # >> ${TIYONIX} 20 sort -o ${TIYONIX} ${TIYONIX} 21 22 links: 23 -for i in ${DIYONIX}; do \ 24 cd $$i && rm -f tags; ln -s ../tags tags; done 25 26 27 SUBDIR= compile include 28 29 .include <bsd.subdir.mk> 30